forked from uber/uber-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PodspecShared.rb
19 lines (19 loc) · 1.13 KB
/
PodspecShared.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
def configure_podspec(spec, module_name)
spec.name = module_name
spec.version = "0.11.0"
spec.summary = "The Official Uber Rides iOS SDK."
spec.description = <<-DESC
This Swift library allows you to integrate Uber into your iOS app. It is designed to make it quick and easy to add a 'Request a Ride' button in your application, seamlessly connecting your users with Uber.
DESC
spec.homepage = "https://github.com/uber/rides-ios-sdk"
spec.screenshots = "https://raw.githubusercontent.com/uber/rides-ios-sdk/master/img/example_app.png"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.authors = { "Edward Jiang" => "[email protected]", "Jay Bobzin" => "[email protected]", "Ty Smith" => "[email protected]" }
spec.platform = :ios, "8.0"
spec.source = { :git => "https://github.com/uber/rides-ios-sdk.git", :tag => 'v' + spec.version.to_s }
spec.source_files = ["source/" + module_name + "/**/*.{swift,h,m}"]
spec.swift_version = '4.2'
spec.resource = "source/" + module_name + "/Resources/**"
spec.requires_arc = true
spec.ios.deployment_target = '8.0'
end