Created
November 9, 2016 09:55
-
-
Save GE-N/1aad4c81512da03feb408a9696ef4eae to your computer and use it in GitHub Desktop.
newsfeedpodspec
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 = 'Newsfeed' | |
s.version = '0.1.0' | |
s.summary = 'A short description of Newsfeed.' | |
s.description = <<-DESC | |
TODO: Add long description of the pod here. | |
DESC | |
s.homepage = 'https://github.com/GE-N/Newsfeed' | |
# 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/GE-N/Newsfeed.git', :tag => s.version.to_s } | |
# s.social_media_url = 'https://twitter.com/onoaonoa | |
s.ios.deployment_target = '8.0' | |
s.source_files = 'Newsfeed/Classes/**/*' | |
# s.resource_bundles = { | |
# 'Newsfeed' => ['Newsfeed/Assets/*.png'] | |
# } | |
# s.public_header_files = 'Pod/Classes/**/*.h' | |
# s.frameworks = 'UIKit', 'MapKit' | |
s.dependency 'API', '0.1.0' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment