13 lines
535 B
Ruby
13 lines
535 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'ATMHud'
|
|
s.version = '0.0.1'
|
|
s.platform = :ios
|
|
s.summary = 'Library for the creation of HUDs in iPhone applications.'
|
|
s.homepage = 'https://github.com/atomton/ATMHud'
|
|
s.author = { 'Marcel Müller' => 'pool@atomton.net' }
|
|
s.source = { :git => 'https://github.com/atomton/ATMHud.git', :commit => 'fc79fed7268362c744de5470169db0a381866ad7' }
|
|
s.source_files = 'ATM*.{h,m}'
|
|
s.resources = '11-x.png', '19-check.png', 'pop.wav'
|
|
s.frameworks = 'QuartzCore', 'AudioToolbox'
|
|
end
|