Skip to content

Commit

Permalink
Adding SoundCloudAPI & SoundCloudUI
Browse files Browse the repository at this point in the history
  • Loading branch information
stigi committed Jun 18, 2012
1 parent 7e7e115 commit bb1015b
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
18 changes: 18 additions & 0 deletions CocoaSoundCloudAPI/1.0.0/CocoaSoundCloudAPI.podspec
@@ -0,0 +1,18 @@
Pod::Spec.new do |s|
s.name = 'CocoaSoundCloudAPI'
s.version = '1.0.0'
s.summary = 'A simple way to interact with the SoundCloud CocoaSoundCloudAPI.'
s.homepage = 'https://github.com/soundcloud/CocoaSoundCloudAPI'
s.author = { 'Ullrich Schäfer' => 'ullrich@soundcloud.com',
'Robert Böhnke' => 'robb@soundcloud.com',
'Tobias Kräntzer' => 'tk@soundcloud.com' }


s.source = { :git => 'git://github.com/soundcloud/CocoaSoundCloudAPI.git', :tag => 'v1.0' }

s.source_files = 'Sources', 'Sources/**/*.{h,m}'

s.framework = 'Security'

s.dependency 'NXOAuth2Client', '~> 1.0'
end
28 changes: 28 additions & 0 deletions CocoaSoundCloudUI/1.0.0/CocoaSoundCloudUI.podspec
@@ -0,0 +1,28 @@
Pod::Spec.new do |s|
s.name = 'CocoaSoundCloudUI'
s.version = '1.0.0'
s.summary = 'A simple way to share audio on soundcloud.com.'
s.homepage = 'https://github.com/soundcloud/CocoaSoundCloudUI'
s.author = { 'Ullrich Schäfer' => 'ullrich@soundcloud.com',
'Robert Böhnke' => 'robb@soundcloud.com',
'Tobias Kräntzer' => 'tk@soundcloud.com' }

s.source = { :git => 'git://github.com/soundcloud/CocoaSoundCloudUI.git', :tag => 'v1.0' }

s.platform = :ios

s.source_files = 'Sources', 'Sources/**/*.{h,m}'

s.resource = "SoundCloud.bundle"

s.framework = 'AddressBook'
s.framework = 'AddressBookUI'
s.framework = 'QuartzCore'
s.framework = 'CoreGraphics'
s.framework = 'CoreText'
s.framework = 'CoreLocation'

s.dependency 'CocoaSoundCloudAPI', '~> 1.0'
s.dependency 'OHAttributedLabel'
s.dependency 'JSONKit'
end

0 comments on commit bb1015b

Please sign in to comment.