20 lines
735 B
Ruby
20 lines
735 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "Rebel"
|
|
s.version = "0.1"
|
|
s.summary = "Rebel is a framework to make AppKit easier to work with."
|
|
s.homepage = "https://github.com/github/Rebel"
|
|
s.license = 'MIT'
|
|
s.author = { "GitHub" => "support@github.com" }
|
|
s.source = { :git => "https://github.com/github/Rebel.git", :tag => s.version.to_s }
|
|
s.frameworks = 'QuartzCore', 'Cocoa'
|
|
s.platform = :osx, '10.7'
|
|
s.source_files = FileList['Rebel/*.{h,m}'].exclude(/NSColor\+RBLCGColorAdditions/)
|
|
s.requires_arc = true
|
|
s.dependency 'libextobjc'
|
|
|
|
s.subspec 'NSColorExtensions' do |ss|
|
|
ss.source_files = 'Rebel/NSColor+RBLCGColorAdditions.{h,m}'
|
|
ss.requires_arc = false
|
|
end
|
|
end
|