Skip to content

Instantly share code, notes, and snippets.

@codecaffeine
Last active January 3, 2016 15:29
Show Gist options
  • Save codecaffeine/8483349 to your computer and use it in GitHub Desktop.
Save codecaffeine/8483349 to your computer and use it in GitHub Desktop.
Fixed LetsMove.podspec
Pod::Spec.new do |s|
s.name = "LetsMove"
s.version = "1.9"
s.summary = "Move a running Mac application to the /Applications directory."
s.description = <<-DESC
Move a running Mac application to the /Applications directory.
DESC
s.homepage = "https://github.com/potionfactory/LetsMove/"
s.license = 'Public Domain'
s.author = { "Andy Kim" => "andy@potionfactory.com" }
s.platform = :osx, '10.5'
s.source = {
:git => "https://github.com/potionfactory/LetsMove.git",
:tag => "v1.9"
}
s.source_files = '*.{h,m}'
s.exclude_files = 'main.m', 'LetsMoveAppDelegate.{h,m}'
s.public_header_files = 'PFMoveApplication.h'
s.resources = '*.lproj'
s.requires_arc = false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment