Skip to content

Commit

Permalink
reviewed
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Dec 28, 2011
1 parent 9cfd23f commit 94b285f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -88,7 +88,7 @@ desc "compile coffeescript"
task :compile do
require 'coffee-script'
FileList['js/**/*.coffee'].each do |coffee|
File.open(coffee.gsub(Pathname(coffee).extname, '.js'), 'w') do |js|
File.open(coffee.sub(/\.coffee\z/, '.js'), 'w') do |js|
js.write CoffeeScript.compile(File.read(coffee))
end
end
Expand Down

0 comments on commit 94b285f

Please sign in to comment.