Skip to content

Commit

Permalink
Merge c57272e into a572b33
Browse files Browse the repository at this point in the history
  • Loading branch information
rastersize committed Mar 26, 2016
2 parents a572b33 + c57272e commit feb3de9
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions SPTDataLoader.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Pod::Spec.new do |s|

s.name = "SPTDataLoader"
s.version = "1.1.0"
s.summary = "SPTDataLoader is Spotify's HTTP library for Objective-C"
s.summary = "SPTDataLoader is Spotifys HTTP library for Objective-C"

s.description = <<-DESC
Authentication and back-off logic is a pain, let’s do it
Expand All @@ -11,17 +11,23 @@ Pod::Spec.new do |s|
making HTTP requests.
DESC

s.ios.deployment_target = "6.0"
s.osx.deployment_target = "10.9"
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.ios.deployment_target = "7.0"
s.osx.deployment_target = "10.9"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"

s.homepage = "https://github.com/spotify/SPTDataLoader"
s.license = "Apache 2.0"
s.author = { "Will Sackfield" => "sackfield@spotify.com" }
s.source = { :git => "https://github.com/spotify/SPTDataLoader.git", :tag => s.version }
s.source_files = "include/SPTDataLoader/*.h", "SPTDataLoader/*.{h,m}"
s.public_header_files = "include/SPTDataLoader/*.h"
s.xcconfig = { 'OTHER_LDFLAGS' => '-lObjC' }
s.homepage = "https://github.com/spotify/SPTDataLoader"
s.social_media_url = "https://twitter.com/spotifyeng"
s.license = "Apache 2.0"
s.author = {
"Will Sackfield" => "sackfield@spotify.com"
}

s.source = { :git => "https://github.com/spotify/SPTDataLoader.git", :tag => s.version }
s.source_files = "include/SPTDataLoader/*.h", "SPTDataLoader/*.{h,m}"
s.public_header_files = "include/SPTDataLoader/*.h"
s.xcconfig = {
"OTHER_LDFLAGS" => "-lObjC"
}

end

0 comments on commit feb3de9

Please sign in to comment.