15 lines
811 B
Ruby
Executable File
15 lines
811 B
Ruby
Executable File
Pod::Spec.new do |s|
|
|
s.name = 'Appirater'
|
|
s.version = '1.0.0'
|
|
s.platform = :ios
|
|
s.summary = "A utility that reminds your iPhone app's users to review the app."
|
|
s.homepage = 'http://arashpayan.com/blog/2009/09/07/presenting-appirater/'
|
|
s.author = { 'Arash Payan' => 'arash.payan@gmail.com' }
|
|
s.source = { :git => 'https://github.com/arashpayan/appirater.git', :commit => '1f6edfb85ec242be0321e5045331b475e0720043' }
|
|
s.source_files = '*.{h,m}'
|
|
s.resources = '*.lproj'
|
|
s.frameworks = 'CFNetwork', 'SystemConfiguration'
|
|
s.weak_framework = 'StoreKit'
|
|
s.license = { :type => 'MIT', :text => 'Copyright 2012. Arash Payan. This library is distributed under the terms of the MIT/X11.' }
|
|
end
|