forked from tombenner/nui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNUI.podspec
16 lines (15 loc) · 809 Bytes
/
NUI.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "NUI"
s.version = "0.3.2"
s.summary = "Style iOS apps with a style sheet, similar to CSS."
s.description = "NUI is a drop-in UI kit for iOS that lets you style UI elements using a style sheet, 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.3.2" }
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" ]
end