-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathOptik.podspec
More file actions
20 lines (17 loc) · 856 Bytes
/
Optik.podspec
File metadata and controls
20 lines (17 loc) · 856 Bytes
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.4.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" => "linn@prolificinteractive.com" }
s.source = { :git => "https://github.com/prolificinteractive/Optik.git", :tag => s.version.to_s }
s.platform = :ios, '10.1'
s.requires_arc = true
s.source_files = 'Optik/Classes/**/*'
s.resources = ['Optik/Assets/*.xcassets']
end