Compare commits

..

1 Commits

Author SHA1 Message Date
David Beveridge
6b2055f642 remove .coffee extension on compiled version of CoffeeScript files
When compiled, CoffeeScript files had names like "my_lib.coffee.js". This
broke compatibility with RequireJS.  Changing the naming convention to use
only the .js extension allows files to be used as RequireJS modules.
2013-08-25 20:02:30 -07:00
2 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,4 @@
_This project is dead. You should use [Karma](http://karma-runner.github.io/) instead. I do._
_I am looking for a new maintainer for this project. Please contact me via GitHub if you're interested._
# Jasmine Headless WebKit runner

View File

@ -14,6 +14,11 @@ module Jasmine
def action
CoffeeScript.compile(File.read(file))
end
def relative_cache_file
super.gsub(/.coffee$/, '')
end
end
end
end