Skip to content

Commit ec09c93

Browse files
committed
Create SoundEffect.podspec
1 parent 5d2d36b commit ec09c93

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

SoundEffect.podspec

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Pod::Spec.new do |s|
2+
s.name = "SoundEffect"
3+
s.version = "0.0.1"
4+
s.summary = "Sound Effect is a sample class for quickly incorporating sound effects in iOS, OS X and tvOS apps."
5+
s.homepage = "https://github.com/TheDarkCode/SoundEffect"
6+
s.license = 'MIT'
7+
s.author = { "Mark Hamilton" => "[email protected]" }
8+
s.source = { :git => "https://github.com/TheDarkCode/SoundEffect.git", :tag => s.version.to_s }
9+
s.social_media_url = 'https://twitter.com/dryverless'
10+
11+
s.platform = :ios, '8.0'
12+
s.requires_arc = true
13+
14+
s.source_files = 'Pod/Classes/**/*'
15+
s.resource_bundles = {
16+
'SoundEffect' => ['Pod/Assets/*.png']
17+
}
18+
19+
end

0 commit comments

Comments
 (0)