Created
July 22, 2012 13:02
-
-
Save HBehrens/3159586 to your computer and use it in GitHub Desktop.
CocoaPods Spec for https://github.com/BeamApp/MusicPlayerViewController
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'BeamMusicPlayerViewController' | |
s.version = '0.1' | |
s.summary = 'An iPhone view controller to visualize and control music playback.' | |
s.homepage = 'https://github.com/BeamApp/MusicPlayerViewController' | |
s.authors = { 'Moritz Haarmann' => 'http://momo.brauchtman.net', 'Heiko Behrens' => 'http://HeikoBehrens.net' } | |
s.source = { :git => 'https://github.com/BeamApp/MusicPlayerViewController.git' } | |
s.platform = :ios | |
s.source_files = 'Source/*.{h,m}' | |
s.resources = 'Source/BeamMusicPlayerController.bundle' | |
s.requires_arc = true; | |
s.frameworks = 'MediaPlayer', 'CoreGraphics' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment