-
Notifications
You must be signed in to change notification settings - Fork 1
/
NNMacros.podspec
27 lines (20 loc) · 910 Bytes
/
NNMacros.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
Pod::Spec.new do |s|
s.name = "NNMacros"
s.version = ENV['BUMP_VERSION'] || '0.0.1'
s.summary = "NNMacros: Macros used in Objective-C development"
s.description = <<-DESC
NNMacros: Macros used in Objective-C development.
DESC
s.homepage = "https://github.com/amisare/NNMacros"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Haijun Gu" => "[email protected]" }
s.social_media_url = "https://www.jianshu.com/u/9df9f28ff266"
s.source = { :git => "https://github.com/amisare/NNMacros.git", :tag => s.version.to_s }
s.ios.deployment_target = '6.0'
s.requires_arc = true
s.source_files = 'NNMacros/*.{h,m}', 'NNMacros/CocoapodsFix/*.{h,m}'
s.default_subspec = 'Bases'
s.subspec 'Bases' do |ss|
ss.source_files = 'NNMacros/Bases/*.{h,m}'
end
end