-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathloudspeaker.podspec
More file actions
30 lines (26 loc) · 1.19 KB
/
loudspeaker.podspec
File metadata and controls
30 lines (26 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Pod::Spec.new do |s|
s.name = "loudspeaker"
s.version = "1.0.0"
s.summary = "An AVQueuePlayer-backed audio player with a modern, minimal UI"
s.description = <<-DESC
An audio player with a modern, minimal UI. Powered by AVQueuePlayer.
* Plays all file formats supported by iOS
* Auto Layout keeps it looking fiiiine however you jam it into your app
* Jump forward or backward with gestures
DESC
s.homepage = "https://github.com/amco/loudspeaker"
s.screenshot = "http://i.imgur.com/IOACIpO.png"
s.license = 'MIT'
s.author = { "Adam Yanalunas" => "adamy@yanalunas.com" }
s.source = { :git => "https://github.com/amco/loudspeaker.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/adamyanalunas'
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = 'Pod/Classes'
s.resource_bundles = {
'loudspeaker' => ['Pod/Assets/**/*']
}
s.dependency 'Masonry', '~> 1.1.0'
s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit', 'AVFoundation'
end