15 lines
648 B
Ruby
15 lines
648 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "iOSInstalledApps"
|
|
s.version = "0.2.0"
|
|
s.summary = "Utility functions to assist with iOS app reading by checking running processes and identifying whether apps implement a custom URL Scheme."
|
|
s.homepage = "https://github.com/arg0s/iOSInstalledApps"
|
|
|
|
s.license = 'BSD'
|
|
s.author = { "Aravind Krishnaswamy" => "arvi@alumni.iastate.edu" }
|
|
s.source = { :git => "https://github.com/arg0s/iOSInstalledApps.git", :commit => "7e88351860962f94d87114fe4860d70430a19b5f" }
|
|
|
|
s.platform = :ios, '5.0'
|
|
s.source_files = 'LLInstalledApps*.{h,m}'
|
|
s.requires_arc = true
|
|
end
|