Files
JBChartView/Rebel/0.2/Rebel.podspec
T
Jonathan Willing fc9717a928 [Update] Rebel (0.2)
2013-01-08 13:36:00 -06:00

19 lines
707 B
Ruby

Pod::Spec.new do |s|
s.name = "Rebel"
s.version = "0.2"
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.subspec 'NSColorExtensions' do |ss|
ss.source_files = 'Rebel/NSColor+RBLCGColorAdditions.{h,m}'
ss.requires_arc = false
end
end