forked from cocoabits/MASPreferences
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMASPreferences.podspec
More file actions
15 lines (15 loc) · 819 Bytes
/
MASPreferences.podspec
File metadata and controls
15 lines (15 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.platform = :osx
s.osx.deployment_target = "10.5"
s.name = "MASPreferences"
s.version = "1.1.2"
s.summary = "Modern implementation of the Preferences window for OS X apps, used in TextMate, GitBox and Mou."
s.homepage = "https://github.com/shpakovski/MASPreferences"
s.license = { :type => 'BSD', :file => 'LICENSE.md' }
s.author = { "Vadim Shpakovski" => "vadim@shpakovski.com" }
s.source = { :git => 'https://github.com/shpakovski/MASPreferences.git', :tag => '1.1.2' }
s.source_files = '*.{h,m}'
s.resources = '*.xib'
s.exclude_files = 'README.md', 'LICENSE.md', 'MASPreferences.podspec'
s.requires_arc = false
end