-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathSwishControl.podspec
More file actions
18 lines (18 loc) · 819 Bytes
/
Copy pathSwishControl.podspec
File metadata and controls
18 lines (18 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "SwishControl"
s.version = "0.1.0"
s.summary = "Attach sound effects to UIControls"
s.description = <<-DESC
A cateogory on UIControl for adding sound effects for different events.
DESC
s.homepage = "https://github.com/mikaoj/SwishControl"
s.license = 'MIT'
s.author = { "Joakim Gyllstrom" => "joakim@backslashed.se" }
s.source = { :git => "https://github.com/mikaoj/SwishControl.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.public_header_files = 'Pod/Classes/**/*.h'
s.private_header_files = 'Pod/Classes/BSSoundContainer.h'
s.frameworks = 'UIKit', 'AudioToolbox'
end