adding the compiled parser back into the repo (after all that) so that it can be used as the source for the narwhal package

This commit is contained in:
Jeremy Ashkenas 2010-01-23 12:44:36 -05:00
parent 791d874058
commit 5f94186b40
3 changed files with 2498 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,7 +1,6 @@
presentation
test.coffee
parser.output
lib/coffee_script/parser.rb
test/fixtures/underscore
examples/beautiful_code/parse.coffee
*.gem

View File

@ -58,6 +58,8 @@ namespace :gem do
desc 'Build and install the coffee-script gem'
task :install do
verbose = "lib/coffee_script/parser.output"
FileUtils.rm(verbose) if File.exists?(verbose)
sh "gem build coffee-script.gemspec"
sh "sudo gem install #{Dir['*.gem'].join(' ')} --local --no-ri --no-rdoc"
end

2496
lib/coffee_script/parser.rb Normal file

File diff suppressed because it is too large Load Diff