mirror of
https://github.com/HackPlan/MASPreferences.git
synced 2026-06-20 03:18:32 +08:00
16 lines
819 B
Ruby
16 lines
819 B
Ruby
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
|