-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathABTestingVessel.podspec
More file actions
34 lines (30 loc) · 1.65 KB
/
ABTestingVessel.podspec
File metadata and controls
34 lines (30 loc) · 1.65 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
Pod::Spec.new do |s|
s.name = 'ABTestingVessel'
s.version = '1.3'
s.license = { :type => 'Commercial', :text => 'Read https://www.vessel.io/tos/' }
s.homepage = 'https://vessel.io'
s.summary = 'Vessel A/B Testing for mobile application..'
s.description = <<-DESC
Vessel offers most advanced and powerful mobile A/B testing platform allowing product managers to run deep-layered A/B experiments on their native mobile apps.
Application developers can A/B test everything from design to messaging, Onboarding to sign up options. They can monitor the stats while the test runs and then roll out the winning variations to the entire user base - without any app store releases.
Learn more http://docs.vessel.io/getting-started/
DESC
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
Copyright 2013 - 2014 Zubhium, Inc. All rights reserved.
LICENSE
}
s.social_media_url = "http://twitter.com/vesselio"
s.source = { :git => 'https://github.com/vesselio/ABTesting.git', :tag => "#{s.version}" }
s.platform = :ios, '6.0'
s.frameworks = 'SystemConfiguration','CFNetwork','Security','CoreTelephony'
s.requires_arc = true
s.library = 'sqlite3','icucore'
s.preserve_paths = 'Vessel.framework'
s.public_header_files = 'Vessel.framework/**/*.h'
s.vendored_frameworks = 'Vessel.framework'
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC -all_load', 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/ABTestingVessel"' }
end