Files
coffeescript/lib/coffee-script.rb
Jeremy Ashkenas a4bc24817d bumping to 0.1.1
2009-12-24 11:59:19 -08:00

21 lines
539 B
Ruby

$LOAD_PATH.unshift(File.dirname(__FILE__))
require "coffee_script/lexer"
require "coffee_script/parser"
require "coffee_script/nodes"
require "coffee_script/value"
require "coffee_script/scope"
require "coffee_script/parse_error"
# Namespace for all CoffeeScript internal classes.
module CoffeeScript
VERSION = '0.1.1' # Keep in sync with the gemspec.
# Compile a script (String or IO) to JavaScript.
def self.compile(script)
script = script.read if script.respond_to?(:read)
Parser.new.parse(script).compile
end
end