-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBRStyle.podspec
More file actions
58 lines (46 loc) · 1.8 KB
/
Copy pathBRStyle.podspec
File metadata and controls
58 lines (46 loc) · 1.8 KB
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
50
51
52
53
54
55
56
57
58
Pod::Spec.new do |s|
s.name = 'BRStyle'
s.version = '1.1.0'
s.summary = 'Basic color and font style framework for UIKit.'
s.description = <<-DESC
BRStyle provides a basic style framework for application-wide
colors and fonts. It aims to make it easy to define a global
style for your application, in a simple way.
DESC
s.homepage = 'https://github.com/Blue-Rocket/BRStyle'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.author = { 'Matt Magoffin' => 'matt@bluerocket.us' }
s.social_media_url = 'http://twitter.com/bluerocketinc'
s.platform = :ios, '7.1'
s.source = { :git => 'https://github.com/Blue-Rocket/BRStyle.git',
:tag => s.version.to_s }
s.requires_arc = true
s.default_subspecs = 'All'
s.subspec 'All' do |sp|
sp.source_files = 'BRStyle/Code/BRStyle.h'
sp.dependency 'BRStyle/Core'
sp.dependency 'BRStyle/UIBarButtonItem'
sp.dependency 'BRStyle/UIButton'
sp.dependency 'BRStyle/UINavigationBar'
sp.dependency 'BRStyle/UIToolbar'
end
s.subspec 'Core' do |sp|
sp.source_files = 'BRStyle/Code/Core.h', 'BRStyle/Code/Core'
end
s.subspec 'UIBarButtonItem' do |sp|
sp.source_files = 'BRStyle/Code/UIBarButtonItem'
sp.dependency 'BRStyle/Core'
end
s.subspec 'UIButton' do |sp|
sp.source_files = 'BRStyle/Code/UIButton'
sp.dependency 'BRStyle/Core'
end
s.subspec 'UINavigationBar' do |sp|
sp.source_files = 'BRStyle/Code/UINavigationBar'
sp.dependency 'BRStyle/Core'
end
s.subspec 'UIToolbar' do |sp|
sp.source_files = 'BRStyle/Code/UIToolbar'
sp.dependency 'BRStyle/Core'
end
end