2009-12-16 23:10:03 -05:00
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = 'coffee-script'
|
2009-12-27 15:49:11 -05:00
|
|
|
s.version = '0.1.6' # Keep version in sync with coffee-script.rb
|
|
|
|
s.date = '2009-12-27'
|
2009-12-16 23:10:03 -05:00
|
|
|
|
|
|
|
s.homepage = "http://jashkenas.github.com/coffee-script/"
|
|
|
|
s.summary = "The CoffeeScript Compiler"
|
|
|
|
s.description = <<-EOS
|
2009-12-24 14:59:19 -05:00
|
|
|
CoffeeScript is a little language that compiles into JavaScript. Think
|
|
|
|
of it as JavaScript's less ostentatious kid brother -- the same genes,
|
|
|
|
roughly the same height, but a different sense of style. Apart from a
|
|
|
|
handful of bonus goodies, statements in CoffeeScript correspond
|
|
|
|
one-to-one with their equivalent in JavaScript, it's just another
|
|
|
|
way of saying it.
|
2009-12-16 23:10:03 -05:00
|
|
|
EOS
|
|
|
|
|
|
|
|
s.authors = ['Jeremy Ashkenas']
|
|
|
|
s.email = 'jashkenas@gmail.com'
|
|
|
|
s.rubyforge_project = 'coffee-script'
|
|
|
|
s.has_rdoc = false
|
|
|
|
|
|
|
|
s.require_paths = ['lib']
|
2009-12-26 11:57:13 -05:00
|
|
|
s.executables = ['coffee']
|
2009-12-16 23:10:03 -05:00
|
|
|
|
2009-12-28 15:45:47 -05:00
|
|
|
s.files = Dir['bin/*', 'examples/*', 'lib/**/*', 'coffee-script.gemspec', 'LICENSE', 'README', 'package.json']
|
2009-12-16 23:10:03 -05:00
|
|
|
end
|