forked from tombenner/nui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NUI.podspec
18 lines (16 loc) · 836 Bytes
/
NUI.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "NUI"
s.version = "0.5.5"
s.summary = "Style iOS apps with a stylesheet, similar to CSS."
s.description = "NUI is a drop-in UI kit for iOS that lets you style UI elements using a stylesheet, similar to CSS. It lets you style an entire app in minutes."
s.homepage = "https://github.com/tombenner/nui"
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
s.author = { "Tom Benner" => "[email protected]" }
s.source = { :git => "https://github.com/tombenner/nui.git", :tag => "v0.5.5" }
s.platform = :ios, '5.1'
s.source_files = 'NUI', 'NUI/**/*.{h,m}'
s.resources = "NUI/Resources/*.png", "NUI/**/*.nss"
s.requires_arc = true
s.frameworks = [ "UIKit", "CoreGraphics","QuartzCore", "CoreImage" ]
s.dependency 'NUIParse'
end