-
Notifications
You must be signed in to change notification settings - Fork 0
/
nanoUI.podspec
25 lines (21 loc) · 947 Bytes
/
nanoUI.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
Pod::Spec.new do |s|
s.name = "nanoUI"
s.version = "1.0.0"
s.summary = "Various kind of UI code that ease up UI manipulation"
s.description = <<-DESC
nUI Enable certain kind of UI manipulation in interface builder with @IBInspectable & @IBDesignable
to give developer more visual information while developing/designing any application.
DESC
s.homepage = "https://github.com/myste1tainn/nanoUI"
s.license = 'MIT'
s.author = { "A. Keereena" => "myste1tainn.icez@gmail.com or a.keereena@gmail.com" }
s.source = { :git => "https://github.com/myste1tainn/nanoUI.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'nanoUI' => ['Pod/Assets/*.png']
}
s.frameworks = 'Foundation', 'UIKit'
# s.dependency 'FastImageCache', '~> 1.3'
end