Files
JBChartView/Rebel/0.1/Rebel.podspec
T
Jonathan Willing 45a0c1d108 [Add] Rebel (0.1)
2012-10-23 12:34:28 -05:00

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