Skip to content

Instantly share code, notes, and snippets.

@scott-lydon
Created October 14, 2021 05:57
Show Gist options
  • Save scott-lydon/f4d90c6dedc497e0ea25ea7c2fba42a9 to your computer and use it in GitHub Desktop.
Save scott-lydon/f4d90c6dedc497e0ea25ea7c2fba42a9 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "BlaBlabla"
s.version = "0.1.0"
s.summary = "Description of your project"
s.description = "Mandatorily longer description of your project"
s.homepage = "https://github.com/ElevatedUnderdogs/PracticeCocoaPod1/tree/main"
s.license = "Description of your licence, name or otherwise"
s.author = { "Developer" => "your@email.com" }
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/ElevatedUnderdogs/PracticeCocoaPod1.git", :tag => "#{s.version}" }
s.source_files = "BlaBlabla/Classes/**/*.swift" # path to your classes. You can drag them into their own folder.
s.requires_arc = true
s.swift_version= '5.0'
s.xcconfig = { 'SWIFT_VERSION' => '5.0' }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment