eomeroff
eomeroff

Reputation: 9925

Coffeescript with Rails

I have just started learning Rails, is it required for me to learn CoffeeScript as well? Where it becomes useful?

Upvotes: 1

Views: 564

Answers (1)

Dty
Dty

Reputation: 12273

You do not need to know coffeescript to learn rails. While Coffeescript is the default as of rails 3.1 you can change it to use pure javascript instead. To do so:

  1. Comment out gem "coffee-script" in your Gemfile
  2. Use .js instead of .js.coffee for your javascript files

Upvotes: 5

Related Questions