forked from hyperoslo/Imaginary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Imaginary.podspec
24 lines (20 loc) · 883 Bytes
/
Imaginary.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "Imaginary"
s.summary = "Remote images, as easy as one, two, three."
s.version = "4.0.0"
s.homepage = "https://github.com/hyperoslo/Imaginary"
s.license = 'MIT'
s.author = { "Hyper Interaktiv AS" => "ios@hyper.no" }
s.source = { :git => "https://github.com/hyperoslo/Imaginary.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/hyperoslo'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.2'
s.requires_arc = true
s.ios.source_files = 'Sources/{iOS,Shared}/**/*'
s.osx.source_files = 'Sources/{Mac,Shared}/**/*'
s.tvos.source_files = 'Sources/{iOS,Shared}/**/*'
s.frameworks = 'Foundation'
s.dependency 'Cache', '~> 5.0'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.1' }
end