0

I'm trying to install and set up this gem - https://github.com/galetahub/ckeditor, but when I follow the instructions and run:

rails generate ckeditor:install

I get an error because "rails generate" is a rails 3 command (I think?!).. so my question is, what is the equivalent rails 2 command to run this?

tshepang
  • 12,111
  • 21
  • 91
  • 136
Alex Fox
  • 1,175
  • 2
  • 15
  • 27

1 Answers1

1
ruby script/generate ckeditor:install

This should do it in Rails 2

Sven

SvenK
  • 2,584
  • 2
  • 21
  • 24
  • Ah, I tried that before but I didn't work, it was infact "ruby script/generate ckeditor_install" Thanks tho! – Alex Fox Aug 08 '11 at 18:58