forked from Nicejinux/NXDrawKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNXDrawKit.podspec
33 lines (27 loc) · 1.21 KB
/
NXDrawKit.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
31
32
33
#
# Be sure to run `pod lib lint NXDrawKit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'NXDrawKit'
s.version = '0.5.2'
s.summary = 'NXDrawKit is a simple and easy but useful drawing kit for iPhone'
s.description = 'NXDrawKit is a set of classes designed to use drawable view easily.'
s.homepage = 'https://github.com/nicejinux/NXDrawKit'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Nicejinux' => '[email protected]' }
s.source = { :git => 'https://github.com/nicejinux/NXDrawKit.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/nicejinux'
s.ios.deployment_target = '8.0'
s.source_files = 'NXDrawKit/Classes/*'
s.resource_bundles = {
'NXDrawKit' => ['NXDrawKit/Assets/*']
}
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.dependency 'SnapKit', '= 0.22.0'
s.frameworks = 'UIKit'
end