Last active
January 3, 2016 15:29
-
-
Save codecaffeine/8483349 to your computer and use it in GitHub Desktop.
Fixed LetsMove.podspec
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" => "[email protected]" } | |
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