mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
26 lines
No EOL
1 KiB
Ruby
26 lines
No EOL
1 KiB
Ruby
Gem::Specification.new do |s|
|
|
s.name = 'coffee-script'
|
|
s.version = '0.1.6' # Keep version in sync with coffee-script.rb
|
|
s.date = '2009-12-27'
|
|
|
|
s.homepage = "http://jashkenas.github.com/coffee-script/"
|
|
s.summary = "The CoffeeScript Compiler"
|
|
s.description = <<-EOS
|
|
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.
|
|
EOS
|
|
|
|
s.authors = ['Jeremy Ashkenas']
|
|
s.email = 'jashkenas@gmail.com'
|
|
s.rubyforge_project = 'coffee-script'
|
|
s.has_rdoc = false
|
|
|
|
s.require_paths = ['lib']
|
|
s.executables = ['coffee']
|
|
|
|
s.files = Dir['bin/*', 'examples/*', 'lib/**/*', 'coffee-script.gemspec', 'LICENSE', 'README', 'package.json']
|
|
end |