1 Commits

Author SHA1 Message Date
Tomáš Znamenáček 2bbdbbfff9 Fixed Podspec (silly me). 2015-01-09 11:37:00 +01:00
2 changed files with 17 additions and 14 deletions
+3
View File
@@ -1,3 +1,6 @@
2.0.1 2015/1/9
- Trivial Podspec fix.
2.0.0 2015/1/9
- First version with a changes file :)
- Major, backwards incompatible refactoring to simplify long-term maintenance.
+14 -14
View File
@@ -1,17 +1,17 @@
Pod::Spec.new do |s|
s.name = 'MASShortcut'
s.version = '2.0.0'
s.summary = 'Modern framework for managing global keyboard shortcuts compatible with Mac App Store'
s.homepage = 'https://github.com/shpakovski/MASShortcut'
s.license = 'BSD 2-clause'
s.authors = { 'Vadim Shpakovski' => 'vadim@shpakovski.com',
'Tomáš Znamenáček' => 'tomas.znamenacek@gmail.com' }
s.name = 'MASShortcut'
s.version = '2.0.1'
s.summary = 'Modern framework for managing global keyboard shortcuts compatible with Mac App Store'
s.homepage = 'https://github.com/shpakovski/MASShortcut'
s.license = 'BSD 2-clause'
s.authors = { 'Vadim Shpakovski' => 'vadim@shpakovski.com',
'Tomáš Znamenáček' => 'tomas.znamenacek@gmail.com' }
s.platform = :osx
s.deployment_target = "10.7"
s.source = { :git => 'https://github.com/shpakovski/MASShortcut.git', :tag => '2.0.0' }
s.source_files = 'Framework/*.{h,m}'
s.exclude_files = 'Framework/*Tests.m'
s.osx.frameworks = 'Carbon', 'AppKit'
s.requires_arc = true
s.platform = :osx
s.osx.deployment_target = "10.7"
s.source = { :git => 'https://github.com/shpakovski/MASShortcut.git', :tag => '2.0.1' }
s.source_files = 'Framework/*.{h,m}'
s.exclude_files = 'Framework/*Tests.m'
s.osx.frameworks = 'Carbon', 'AppKit'
s.requires_arc = true
end