forked from StravaKit/StravaKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStravaKit.podspec
More file actions
17 lines (17 loc) · 797 Bytes
/
StravaKit.podspec
File metadata and controls
17 lines (17 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "StravaKit"
s.version = "0.9.4"
s.summary = "API client for Strava written in Swift."
s.description = "Swift framework for integrating with the Strava API."
s.module_name = "StravaKit"
s.homepage = "https://github.com/StravaKit/StravaKit"
s.license = 'MIT'
s.author = { "Brennan Stehling" => "brennan@smallsharptools.com" }
s.source = { :git => "https://github.com/StravaKit/StravaKit.git", :tag => "v0.9.4" }
s.social_media_url = 'https://twitter.com/smallsharptools'
s.source_files = 'Sources/*.swift'
s.cocoapods_version = '>= 1.0'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.frameworks = 'Foundation', 'CoreLocation', 'Security'
end