forked from hirenpanchal1608/WelcomeHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRollout.io.podspec
29 lines (22 loc) · 1.01 KB
/
Rollout.io.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
Pod::Spec.new do |s|
s.name = "Rollout.io"
s.version = "1.4.0"
s.summary = "Hot patch critical bugs in production apps"
s.description = "Rollout.io is an SDK that gives developers control over their apps in production, including the ability to remotely fix or contain bugs and quality issues."
s.homepage = "https://rollout.io/"
s.license = {
"type" => "Commercial",
"text" => "See http://www.rollout.io/"
}
s.authors = {
"Rollout.io" => "[email protected]"
}
s.documentation_url = "http://support.rollout.io/"
s.requires_arc = true
s.ios.vendored_frameworks = 'Rollout/Rollout.framework'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(inherited)' }
s.weak_framework = 'JavaScriptCore'
s.libraries = 'c++'
s.source = { :git => "https://github.com/rollout/rollout.io-ios.git", :tag => "1.4.0" }
s.preserve_paths = "lib/**/*", "install/**/*", "RolloutSwift/*", "Rollout/RolloutDynamic.m"
end