Re: [Rails] Re: Super noob needs help.

2010-01-29 Thread Ethan Gunderson
Can you not install the plugin for some reason? Alternatively, you could always install the version of rails that he is using, which must be a pre 2.0 rails. On Fri, Jan 29, 2010 at 12:14 PM, Afg Afg li...@ruby-forum.com wrote: Marnen Laibow-Koser wrote: Sean Six wrote: Is the tutorial

Re: [Rails] Re: Re: Super noob needs help.

2010-01-29 Thread Ethan Gunderson
I entirely agree, and we've all recommended the same, but he seems pretty set on using these certain tutorials :) On Fri, Jan 29, 2010 at 2:02 PM, Marnen Laibow-Koser li...@ruby-forum.comwrote: Ethan Gunderson wrote: Can you not install the plugin for some reason? Bad idea. Scaffolding

[Rails] Re: Super noob needs help.

2010-01-28 Thread Ethan Gunderson
Scaffolding was pulled out into a plugin in Rails 2.0 In order to follow that tutorial, you'll need to install it: script/plugin install scaffolding However, that tutorial seems pretty out of date. You might want to find a newer one. -Ethan On Jan 27, 10:09 pm, Afg Afg li...@ruby-forum.com

Re: [Rails] Re: Super noob needs help.

2010-01-28 Thread Ethan Gunderson
Are you inside of your project directory when running that command? On Thu, Jan 28, 2010 at 5:55 PM, Afg Afg li...@ruby-forum.com wrote: Ethan Gunderson wrote: Scaffolding was pulled out into a plugin in Rails 2.0 In order to follow that tutorial, you'll need to install it: script

Re: [Rails] Re: install gems problem in windows

2010-01-28 Thread Ethan Gunderson
How did you install RubyGems? That version number is pretty old, the current being 1.3.5. I take it from your 'I couldn't install any gems' comment, that you tried to install bundler and it failed? If that's the case, I would uninstall whatever you did to get a .9 version of RubyGems, and then

[Rails] Re: Error message when installing rails

2009-01-03 Thread Ethan Gunderson
What OS are you trying to install on? Ethan Gunderson On Sat, Jan 3, 2009 at 1:21 PM, cutegirl wei.w...@gmail.com wrote: After I entered the command gem install rails --include-dependencies for a while, an error message ERROR: while executing gem... (Zlib::BufError) buffer error. How can

[Rails] Re: Error message when installing rails

2009-01-03 Thread Ethan Gunderson
I'm not sure what guide you followed, but this is the one I use for all of my Windows installs and it seams to work everytime. http://wiki.rubyonrails.org/rails/pages/RailsOnWindows Ethan Gunderson On Sat, Jan 3, 2009 at 9:21 PM, cutegirl wei.w...@gmail.com wrote: Windows XP On Jan 3, 6

[Rails] Re: Error message when installing rails

2009-01-03 Thread Ethan Gunderson
Awesome, please post back and let us know how it went! Ethan Gunderson On Sat, Jan 3, 2009 at 10:29 PM, cutegirl wei.w...@gmail.com wrote: Thanks for the help. I will try the link you provided. On Jan 3, 10:41 pm, Ethan Gunderson twea...@gmail.com wrote: I'm not sure what guide you

[Rails] Re: Displaying ruby content in rhtml

2009-01-02 Thread Ethan Gunderson
Shrikant, % % is code that is executed, but not displayed in the browser. %= % is code that will be executed and displayed. Hope that helps! Ethan Gunderson On Fri, Jan 2, 2009 at 6:02 PM, Shrikant Sv rails-mailing-l...@andreas-s.net wrote: Hi everyone, I am a newbie to RoR. I installed