-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathRamblerSegues.podspec
More file actions
43 lines (34 loc) · 1.42 KB
/
RamblerSegues.podspec
File metadata and controls
43 lines (34 loc) · 1.42 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
#
# Be sure to run `pod lib lint RamblerSegues.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 = "RamblerSegues"
s.version = "1.1.2"
s.summary = "Helpful Segues"
s.description = <<-DESC
Helpful Segues
- Cross storyboard segues with placeholder view controller
- Non-automatic embed view controller segue<<-DESC
DESC
s.homepage = "https://github.com/rambler-digital-solutions/RamblerSegues.git"
s.license = 'MIT'
s.author = { "Andrey Zarembo-Godzyatskiy" => "andrey.zarembo@gmail.com" }
s.source = { :git => "https://github.com/rambler-digital-solutions/RamblerSegues.git", :tag => s.version.to_s }
s.header_mappings_dir = 'Pod/Classes'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.subspec 'Core' do |cs|
cs.source_files = "Pod/Classes/RamblerSegues.h"
end
s.subspec 'CrossStoryboardSegue' do |css|
css.source_files = "Pod/Classes/CrossStoryboardSegue/CrossStoryboardSegue.h", "Pod/Classes/CrossStoryboardSegue/**/*.{h,m}"
end
s.subspec 'EmbedSegue' do |es|
es.source_files = "Pod/Classes/EmbedSegue/EmbedSegue.h", "Pod/Classes/EmbedSegue/**/*.{h,m}"
end
end