forked from uber/uber-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUberRides.podspec
19 lines (17 loc) · 973 Bytes
/
UberRides.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "UberRides"
s.version = "0.3.0"
s.summary = "The Official Uber Rides iOS SDK."
s.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
s.homepage = "https://github.com/uber/rides-ios-sdk"
s.screenshots = "https://raw.githubusercontent.com/uber/rides-ios-sdk/master/img/example_app.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Christine Kim" => "[email protected]", "Farwa Naqi" => "[email protected]" }
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/uber/rides-ios-sdk.git", :tag => 'v' + s.version.to_s }
s.source_files = "source/UberRides/*.swift"
s.resource = "source/UberRides/Resources/**"
s.requires_arc = true
end