forked from vicc/chameleon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChameleonFramework.podspec
executable file
·30 lines (25 loc) · 1.14 KB
/
ChameleonFramework.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
25
26
27
28
29
30
Pod::Spec.new do |s|
s.name = "ChameleonFramework"
s.version = "2.1.0"
s.summary = "Color Framework for iOS (Obj-C & Swift)"
s.homepage = "https://github.com/ViccAlexander/Chameleon"
s.screenshots = "https://camo.githubusercontent.com/bde5aa6ee0e1feec044d184a735da8024c60c04c/687474703a2f2f692e696d6775722e636f6d2f427771486842342e706e67"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = "Vicc Alexander"
s.social_media_url = "http://twitter.com/ViccsMind"
s.platform = :ios
s.ios.deployment_target = '8.0'
s.source = { :git => "https://github.com/ViccAlexander/Chameleon.git",
:tag => s.version.to_s }
s.public_header_files = 'Pod/Classes/Objective-C/**/*.h'
s.frameworks = 'UIKit', 'QuartzCore', 'CoreGraphics'
s.default_subspecs = 'Default'
s.subspec 'Default' do |ss|
ss.source_files = 'Pod/Classes/Objective-C/**/*.{h,m}'
end
s.subspec 'Swift' do |ss|
ss.ios.deployment_target = '8.0'
ss.source_files = 'Pod/Classes/Swift/ChameleonShorthand.swift'
ss.dependency 'ChameleonFramework/Default'
end
end