forked from ClassyKit/Classy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Classy.podspec
24 lines (19 loc) · 915 Bytes
/
Classy.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 = 'Classy'
s.version = '0.2.4'
s.license = 'MIT'
s.summary = 'Expressive, flexible, and powerful stylesheets for UIView and friends.'
s.homepage = 'http://classy.as'
s.author = { 'Jonas Budelmann' => '[email protected]' }
s.social_media_url = "http://twitter.com/cloudkite"
s.source = { :git => 'https://github.com/cloudkite/Classy.git', :tag => 'v0.2.4' }
s.description = %{
Not CSS. Instead of trying to force UIKit to fit CSS syntax, properties, conventions and constructs.
Classy is a stylesheet system built from the ground up to work in harmony with UIKit.
It borrows the best ideas from CSS and introduces new syntax, conventions and constructs where appropriate.
}
s.source_files = 'Classy/**/*.{h,m}'
s.ios.frameworks = 'Foundation', 'UIKit', 'QuartzCore'
s.ios.deployment_target = '6.0'
s.requires_arc = true
end