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 -- Posted via http://www.ruby-forum.com/.
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. On 3/25/06, Stewart Matheson <smathe2@hotmail.com> wrote:> 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 > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
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? -- Posted via http://www.ruby-forum.com/.
Stewart Matheson 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. -- Posted via http://www.ruby-forum.com/.
Wiebe Cazemier wrote:> Stewart Matheson 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 -- Posted via http://www.ruby-forum.com/.