Skip to content

Instantly share code, notes, and snippets.

@jeantimex
Last active February 24, 2019 23:53
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 jeantimex/94a50219fd02504836f21ea1e4deea0d to your computer and use it in GitHub Desktop.
Save jeantimex/94a50219fd02504836f21ea1e4deea0d to your computer and use it in GitHub Desktop.
SwiftyLib.podspec
Pod::Spec.new do |spec|
spec.name = "SwiftyLib"
spec.version = "0.0.1"
spec.summary = "A CocoaPods library written in Swift"
spec.description = <<-DESC
This CocoaPods library helps you perform calculation.
DESC
spec.homepage = "https://github.com/jeantimex/SwiftyLib"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "jeantimex" => "jean.timex@gmail.com" }
spec.ios.deployment_target = "12.1"
spec.swift_version = "4.2"
spec.source = { :git => "https://github.com/jeantimex/SwiftyLib.git", :tag => "#{spec.version}" }
spec.source_files = "SwiftyLib/**/*.{h,m,swift}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment