forked from prolificinteractive/Optik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Optik.podspec
20 lines (17 loc) · 855 Bytes
/
Optik.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "Optik"
s.version = "0.2.0"
s.summary = "A Swift library for displaying images from any source, local or remote."
s.description = <<-DESC
Optik provides a simple viewing experience for a set of images, whether stored locally or remotely.
DESC
s.homepage = "https://github.com/prolificinteractive/Optik"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "htinlinn" => "[email protected]" }
s.source = { :git => "https://github.com/prolificinteractive/Optik.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Optik/Classes/**/*'
s.resources = ['Optik/Assets/*.xcassets']
end