forked from cocoabits/MASPreferences
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMASPreferences.podspec
More file actions
16 lines (16 loc) · 849 Bytes
/
MASPreferences.podspec
File metadata and controls
16 lines (16 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.platform = :osx, '10.10'
s.name = "MASPreferences"
s.version = "1.3"
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.3' }
s.source_files = 'Framework/*.{h,m}'
s.resource_bundles = {
'MASPreferences' => ['Framework/en.lproj/*.xib']
}
s.exclude_files = 'README.md', 'LICENSE.md', 'MASPreferences.podspec'
s.requires_arc = true
end