Files
JBChartView/Slash/0.1/Slash.podspec
T
2013-02-14 23:06:45 +00:00

28 lines
1.2 KiB
Ruby

Pod::Spec.new do |s|
s.name = "Slash"
s.version = "0.1"
s.summary = "A simple, extensible, language for styling attributed strings."
s.description = <<-DESC
A simple, extensible markup language for styling NSAttributedStrings. The language is similar in appearance to HTML, however the tag vocabulary and styles can be easily customized by passing a dictionary argument to the parser.
DESC
s.homepage = "https://github.com/chrisdevereux/Slash"
s.license = { :type => 'MIT', :file => 'LICENCE' }
s.author = { "Chris Devereux" => "devereux.chris@gmail.com" }
s.source = { :git => "https://github.com/chrisdevereux/Slash.git", :tag => "0.1" }
s.ios.deployment_target = '4.3'
s.osx.deployment_target = '10.6'
s.public_header_files = 'Slash/Slash.h', 'Slash/SLSMarkupParser.h', 'Slash/SLSErrors.h'
s.subspec 'arc' do |ss|
ss.source_files = 'Slash/SLSMarkupParser.m', 'Slash/SLSTaggedRange.m', 'Slash/*.h'
s.requires_arc = true
end
s.subspec 'no-arc' do |ss|
ss.source_files = 'Slash/SLSTagParser.m', 'Slash/SLSTagLexer.gen.m', 'Slash/SLSTagParser.gen.m', 'Slash/*.h'
ss.requires_arc = false
end
end