forked from zenangst/Hue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hue.podspec
24 lines (20 loc) · 818 Bytes
/
Hue.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 = "Hue"
s.summary = "The all-in-one coloring utility that you'll ever need."
s.version = "1.3.0"
s.homepage = "https://github.com/hyperoslo/Hue"
s.license = 'MIT'
s.author = { "Hyper Interaktiv AS" => "[email protected]" }
s.source = { :git => "https://github.com/hyperoslo/Hue.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/hyperoslo'
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.ios.source_files = 'Source/iOS/**/*'
s.ios.frameworks = 'UIKit'
s.tvos.deployment_target = '9.0'
s.tvos.source_files = 'Source/iOS/**/*'
s.tvos.frameworks = 'UIKit'
s.osx.deployment_target = '10.10'
s.osx.source_files = 'Source/Mac/**/*'
s.osx.frameworks = 'AppKit'
end