Last active
August 24, 2016 13:47
-
-
Save igiagante-zz/457d6160777c0c2cf6f96c706fc3ce51 to your computer and use it in GitHub Desktop.
podspec
This file contains hidden or 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 = 'meliDevSDK' | |
| s.version = '0.1.0' | |
| s.summary = 'A short description of meliDevSDK.' | |
| s.resources = "LibraryComponents/Classes/**/*.xib" | |
| s.source_files = "LibraryComponents/Classes/**/*.{h,m}" | |
| s.homepage = 'https://github.com/igiagante/meliDevSDK' | |
| # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' | |
| s.license = { :type => 'MIT', :file => 'LICENSE' } | |
| s.author = { 'Ignacio' => '[email protected]' } | |
| s.source = { :git => 'https://github.com/igiagante/meliDevSDK.git', :tag => s.version.to_s } | |
| s.ios.deployment_target = '8.0' | |
| # s.resource_bundles = { | |
| # 'meliDevSDK' => ['meliDevSDK/Assets/*.png'] | |
| # } | |
| # s.public_header_files = 'Pod/Classes/**/*.h' | |
| # s.frameworks = 'UIKit', 'MapKit' | |
| # s.dependency 'AFNetworking', '~> 2.3' | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment