-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTuneKit.podspec
47 lines (40 loc) · 1.49 KB
/
TuneKit.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
Pod::Spec.new do |s|
s.name = "TuneKit"
s.version = "0.0.1"
s.summary = "TuneKit lets you modify the look and feel of
your iOS app in real time."
s.description = <<-DESC
TuneKit creates on-the-fly control panels to modify the look
and feel of your iOS app in real time.. Tune animations,
colors, etc. and get instant feedback.
DESC
s.homepage = "tractablelabs.com"
s.license = { :type => 'MIT' }
s.author = { "Timothy Moose" => "[email protected]" }
s.platform = :ios, '8.1'
s.source = { :git => "https://github.com/wtmoose/TuneKit.git", :tag => "0.0.1" }
s.source_files = 'TuneKit/**/*.{h,m,pch}'
#s.public_header_files = 'TuneKit/**/TKTuneKit.h'
s.resources = ['TuneKit/**/*.{storyboard,xib,xcassets}']
s.dependency 'TLIndexPathTools'
s.dependency 'OBSlider'
s.requires_arc = true
s.subspec "core" do |ss|
end
s.subspec "pop" do |ss|
ss.dependency 'pop', '~> 1.0'
ss.source_files = "Extensions/Pop"
end
s.subspec "AHEasing" do |ss|
ss.dependency 'AHEasing', '~> 1.1'
ss.source_files = "Extensions/AHEasing"
end
s.subspec "TLLayoutTransitioning" do |ss|
ss.dependency 'TLLayoutTransitioning', '~> 1.0.0'
ss.source_files = "Extensions/TLLayoutTransitioning"
end
s.subspec "RBBAnimation" do |ss|
ss.dependency 'RBBAnimation', '~> 0.4.0'
ss.source_files = "Extensions/RBBAnimation"
end
end