Skip to content

Instantly share code, notes, and snippets.

@peteranny
Last active July 29, 2020 17:37
Show Gist options
  • Save peteranny/adee1ca9bafe106501b392f4e0023e6d to your computer and use it in GitHub Desktop.
Save peteranny/adee1ca9bafe106501b392f4e0023e6d to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "HelloWorldSDK"
s.version = "0.0.1"
s.summary = "iOS SDK for Hello World"
s.description = "iOS SDK for Hello World, including example app"
s.homepage = "https://github.com/peteranny/"
s.license = "MIT"
s.author = "peteranny"
s.platform = :ios, "9.0"
s.swift_version = "4.2"
s.source = {
:git => "https://github.com/peteranny/HelloWorldSDK.git",
:tag => "#{s.version}"
}
s.source_files = "HelloWorldSDK/**/*.{h,m,swift}"
s.public_header_files = "HelloWorldSDK/**/*.h"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment