-
Notifications
You must be signed in to change notification settings - Fork 108
/
KZBootstrap.podspec
49 lines (40 loc) · 1.63 KB
/
KZBootstrap.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#
# Be sure to run `pod lib lint KZBootstrap.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "KZBootstrap"
s.version = "1.0.0"
s.summary = "iOS project bootstrap aimed at high quality coding."
s.description = <<-DESC
Project bootstrap that provides automatic icon versioning, todo -> warning conversion, warnings while files become too long, build numbering, environment switching/validation and much more.
DESC
s.homepage = "https://github.com/krzysztofzablocki/KZBootstrap"
s.license = 'MIT'
s.author = { "Krzysztof Zablocki" => "krzysztof.zablocki@me.com" }
s.source = { :git => "https://github.com/krzysztofzablocki/KZBootstrap.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/merowing_'
s.platform = :ios, '7.0'
s.requires_arc = true
s.preserve_paths = "Pod/Assets/Scripts/*.{sh,swift}"
s.requires_arc = true
s.default_subspec = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = 'Pod/Classes/Core'
ss.frameworks = 'Foundation'
ss.dependency 'KZAsserts', '~> 1.0'
end
s.subspec 'Debug' do |ss|
ss.source_files = 'Pod/Classes/Debug'
ss.dependency "RSSwizzle"
ss.dependency 'KZAsserts', '~> 1.0'
end
s.subspec 'Logging' do |ss|
ss.source_files = 'Pod/Classes/Logging'
ss.dependency "CocoaLumberjack", "~> 2.3.0"
end
end