I saw the guy in the 15 min blog video calling a method called textilize
however when i call it rails says it cant find this method. Is this
somehting extra i have to install to ruby… like a gem or somehting
Yes, go to command line, and on windows type:
gem install redcloth
on Unix/Linux/OS X type:
sudo gem install redcloth
Then restart your development server, and you should be ready to go.
Robert MannI wrote:
Yes, go to command line, and on windows type:
gem install redcloth
on Unix/Linux/OS X type:
sudo gem install redcloth
Then restart your development server, and you should be ready to go.
thanks for that one Robert, it works fine now… just a question
what does the “sudo” part of the command do?
Wiebe C. wrote:
Stewart M. wrote:
just a question
what does the “sudo” part of the command do?
It makes you root (superuser). It should have asked for a password,
except if you were already root.
ah i see thanks for that wiebe yes i was already the root use so it did
not matter
Stewart M. wrote:
just a question
what does the “sudo” part of the command do?
It makes you root (superuser). It should have asked for a password,
except if you were already root.