-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathSoundable.podspec
More file actions
24 lines (18 loc) · 1.07 KB
/
Soundable.podspec
File metadata and controls
24 lines (18 loc) · 1.07 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
Pod::Spec.new do |s|
s.name = 'Soundable'
s.version = File.read('VERSION')
s.summary = 'Playing sounds in your Swift applications and games never was that easy'
s.description = <<-DESC
Soundable is a tiny library that uses `AVFoundation` to manage the playing of sounds in iOS applications in a simple and easy way. You can play single audios, in sequence and in paralel, all is handled by the Soundable library and all they have completion closures when playing finishes.
DESC
s.homepage = 'https://github.com/thxou/Soundable'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'thxou' => '[email protected]' }
s.source = { :git => 'https://github.com/thxou/Soundable.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/thxou'
s.ios.deployment_target = '9.0'
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = 'Source/*.swift'
end