Last active
December 16, 2015 06:29
-
-
Save chendo/5392241 to your computer and use it in GitHub Desktop.
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 = "MASShortcut" | |
s.version = "1.2" | |
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 => "e5b32d7d47a0b69f76dbad6dfd4b7024ace5ced0" } | |
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