diff options
| author | Vadim Shpakovski | 2014-09-22 13:59:45 +0200 |
|---|---|---|
| committer | Vadim Shpakovski | 2014-09-22 13:59:45 +0200 |
| commit | 9266e385173f8b503d332ba35632c8a47c5d7810 (patch) | |
| tree | 9c2ffe4e7b8fd778ae00e486bbd8c6774791d388 | |
| parent | ddab66d2c087df6812394a76c1a520793faacb09 (diff) | |
| download | MASShortcut-9266e385173f8b503d332ba35632c8a47c5d7810.tar.bz2 | |
Polished Pod spec.1.3.1
| -rw-r--r-- | MASShortcut+UserDefaults.m | 6 | ||||
| -rw-r--r-- | MASShortcut.podspec | 20 | ||||
| -rw-r--r-- | MASShortcutView+UserDefaults.m | 5 |
3 files changed, 10 insertions, 21 deletions
diff --git a/MASShortcut+UserDefaults.m b/MASShortcut+UserDefaults.m index ac4fc3d..fd9c0c5 100644 --- a/MASShortcut+UserDefaults.m +++ b/MASShortcut+UserDefaults.m @@ -54,12 +54,6 @@ NSString *_observableKeyPath; } -@synthesize monitor = _monitor; -@synthesize handler = _handler; -@synthesize userDefaultsKey = _userDefaultsKey; - -#pragma mark - - void *MASShortcutUserDefaultsContext = &MASShortcutUserDefaultsContext; - (id)initWithUserDefaultsKey:(NSString *)userDefaultsKey handler:(void (^)())handler diff --git a/MASShortcut.podspec b/MASShortcut.podspec index a17005b..0a2d6ac 100644 --- a/MASShortcut.podspec +++ b/MASShortcut.podspec @@ -1,13 +1,13 @@ Pod::Spec.new do |s| + s.platform = :osx s.name = 'MASShortcut' - s.version = '1.3' - s.summary = 'Modern framework for managing global keyboard shortcuts compatible with Mac App Store' - s.homepage = 'https://github.com/shpakovski/MASShortcut' - s.authors = { 'Vadim Shpakovski' => 'vadim@shpakovski.com' } - s.license = 'BSD 2-clause' - - s.source = { :git => 'git@github.com:shpakovski/MASShortcut.git', :tag => '1.3' } - s.source_files = '*.{h,m}' - s.framework = 'Carbon' - s.requires_arc = true + s.version = '1.3' + s.summary = 'Modern framework for managing global keyboard shortcuts compatible with Mac App Store' + s.homepage = 'https://github.com/shpakovski/MASShortcut' + s.authors = { 'Vadim Shpakovski' => 'vadim@shpakovski.com' } + s.license = 'BSD 2-clause' + s.source = { :git => 'https://github.com/shpakovski/MASShortcut.git', :tag => '1.3' } + s.source_files = '*.{h,m}' + s.osx.frameworks = 'Carbon', 'AppKit' + s.requires_arc = true end diff --git a/MASShortcutView+UserDefaults.m b/MASShortcutView+UserDefaults.m index bbe1dd2..a84f0c9 100644 --- a/MASShortcutView+UserDefaults.m +++ b/MASShortcutView+UserDefaults.m @@ -45,11 +45,6 @@ void *MASAssociatedDefaultsObserver = &MASAssociatedDefaultsObserver; BOOL _internalShortcutChange; } -@synthesize userDefaultsKey = _userDefaultsKey; -@synthesize shortcutView = _shortcutView; - -#pragma mark - - - (id)initWithShortcutView:(MASShortcutView *)shortcutView userDefaultsKey:(NSString *)userDefaultsKey { self = [super init]; |
