14 lines
452 B
Ruby
14 lines
452 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'INAppStoreWindow'
|
|
s.version = '1.1'
|
|
s.summary = 'Mac App Store style NSWindow subclass.'
|
|
s.homepage = 'https://github.com/indragiek/INAppStoreWindow'
|
|
s.author = { 'Indragie Karunaratne' => 'indragiek@gmail.com' }
|
|
s.source_files = '*.{h,m}'
|
|
s.source = { :git => 'https://github.com/indragiek/INAppStoreWindow.git', :tag => 'v1.1' }
|
|
|
|
s.platform = :osx
|
|
s.requires_arc = true
|
|
s.license = 'BSD'
|
|
end
|