Last active
November 4, 2016 09:26
-
-
Save GE-N/e143cf971a77e519d3f240b059013130 to your computer and use it in GitHub Desktop.
myappapi podspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' => '[email protected]' } | |
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