This repository was archived by the owner on Jun 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbumper.podspec
More file actions
42 lines (36 loc) · 1.36 KB
/
bumper.podspec
File metadata and controls
42 lines (36 loc) · 1.36 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
Pod::Spec.new do |s|
s.name = 'bumper'
s.version = '1.1.0'
s.summary = 'A/B Testing debug helper framework for iOS'
s.description = <<-DESC
Letgo Feature flags library.
It not only allows Enabling/disabling parts of the code but select several cases for that parts.
Includes a ruby script that generates all boilerplate for all A/B tests from a json file that
contains the info.
DESC
s.homepage = 'https://github.com/letgoapp/bumper'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = {
'Eli Kohen' => 'eli.kohen@letgo.com',
'Albert Hernández' => 'albert@letgo.com'
}
s.source = { :git => "git@github.com:letgoapp/bumper.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/letgo'
s.ios.deployment_target = '8.0'
s.platform = :ios, '8.0'
s.requires_arc = true
s.default_subspec = 'Core'
s.subspec 'Core' do |core|
# subspec for users who don't want Rx components
core.source_files = 'bumper/**/*'
core.preserve_paths = [ 'scripts/**/*' ]
core.frameworks = 'UIKit'
end
s.subspec 'RxObserving' do |rx|
rx.dependency 'bumper/Core'
rx.xcconfig =
{ 'OTHER_SWIFT_FLAGS' => '$(inherited) -D RX_BUMPER' }
rx.dependency 'RxSwift', '~> 4.1'
rx.dependency 'RxCocoa', '~> 4.1'
end
end