Skip to content

Instantly share code, notes, and snippets.

@GE-N
Last active November 4, 2016 09:26
Show Gist options
  • Save GE-N/e143cf971a77e519d3f240b059013130 to your computer and use it in GitHub Desktop.
Save GE-N/e143cf971a77e519d3f240b059013130 to your computer and use it in GitHub Desktop.
myappapi podspec
Pod::Spec.new do |s|
s.name = 'MyApp_API'
s.version = '0.1.0'
s.summary = 'A short description of MyApp_API.'
s.description = <<-DESC
TODO: Add long description of the pod here.
DESC
s.homepage = 'https://github.com/<GITHUB_USERNAME>/MyApp_API'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Jerapong Nampetch' => 'jerapong@gomeeki.com' }
s.source = { :git => 'https://github.com/<GITHUB_USERNAME>/MyApp_API.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '10.0'
s.source_files = 'MyApp_API/Classes/**/*'
# s.resource_bundles = {
# 'Newsfeed' => ['MyApp_API/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
s.dependency 'Alamofire'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment