Last active
December 11, 2015 21:58
-
-
Save radex/4666018 to your computer and use it in GitHub Desktop.
Podfile for (up-to-date) MASShortcut library
This file contains 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 = "MASShortcut" | |
s.version = "1.1.1" | |
s.summary = "Modern framework for managing global keyboard shortcuts compatible with Mac App Store." | |
s.description = <<-DESC | |
Some time ago Cocoa developers used a brilliant framework ShortcutRecorder for managing keyboard shortcuts in application preferences. However, it became incompatible with a new plugin architecture of Xcode 4. | |
The project MASShortcut introduces modern API and user interface for recording, storing and using global keyboard shortcuts. All code is compatible with Xcode 4.3, Mac OS X 10.7 and the sandboxed environment. | |
DESC | |
s.homepage = "http://blog.shpakovski.com/2012/07/global-keyboard-shortcuts-in-cocoa.html" | |
s.license = 'BSD' | |
s.author = { "Vadim Shpakovski" => "[email protected]" } | |
s.source = { :git => "https://github.com/shpakovski/MASShortcut.git", :commit => "7300a064ec878c7670ee4ccbbf16cb403cb38a31" } | |
s.platform = :osx | |
s.osx.deployment_target = '10.6' | |
s.source_files = '*.{h,m}' | |
s.framework = 'Carbon' | |
s.requires_arc = true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment