Skip to content

Instantly share code, notes, and snippets.

@yabenatti
Created March 7, 2019 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yabenatti/550cc7013726528e3fcbeb5f689de6b8 to your computer and use it in GitHub Desktop.
Save yabenatti/550cc7013726528e3fcbeb5f689de6b8 to your computer and use it in GitHub Desktop.
Example of a podspec
#
# Be sure to run `pod spec lint uFeature.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = 'uFeature'
s.version = '0.1.0'
s.summary = 'uFeature summary'
s.description = <<-DESC
UFeature longer description. All whatever content will be here
DESC
s.homepage = 'https://github.com/yabenatti/whatever-project'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "yasmin-benatti" => "min.benatti@gmail.com" }
s.source = { :git => 'https://github.com/yabenatti/whatever-project.git', :branch => 'feature/uFeature' }
s.ios.deployment_target = '9.0'
s.source_files = 'Sources/**/*'
# Example of a dependency
# s.dependency 'Cartography', '~> 3'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment