21 lines
611 B
Ruby
21 lines
611 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'Intercom'
|
|
s.version = '1.0'
|
|
s.license = {
|
|
:type => 'Apache License, Version 2.0',
|
|
:text => <<-LICENSE
|
|
http://www.apache.org/licenses/LICENSE-2.0.txt
|
|
http://www.apache.org/licenses/
|
|
LICENSE
|
|
}
|
|
s.summary = 'An easy way to install Intercom in your iOS app.'
|
|
s.homepage = 'http://www.intercom.io'
|
|
s.author = { "Adam McCarthy" => "adam@intercom.io" }
|
|
s.source = { :git => 'https://github.com/intercom/intercom-ios.git', :tag => '1.0' }
|
|
|
|
s.source_files = 'Intercom/*.{h,a}'
|
|
|
|
s.ios.deployment_target = '5.0'
|
|
s.framework = 'UIKit'
|
|
|
|
end |