Hi, I am currently running Rails 2.0.2 on my machine, but for the purposes of a AWDR 2nd Edition, I also need to run Rails 1.8.6. I looked around for a bit to find articles on how to do this, but I''m coming up short. Is there anyone out there that knows how to pull this off? Thanks, Justin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
You mean 1.2.6? 1.8.6 is the version of Ruby, right? The 3rd edition of the book is now beta and the source code is compatible with Rails 2.0.2 already. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
The second edition is based on Rails 1.2.3. You can specify the version when you install Rails. sudo gem install rails -v 1.2.3 –include-dependencies If you are new to Rails and don''t wanna be confused with multiple installations, I would suggest you uninstall Rails 2.0.2 first. sudo gem uninstall -v 2.0.2 rails --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On May 10, 2008, at 10:28 AM, Justin Kozuch wrote:> > Hi, > > I am currently running Rails 2.0.2 on my machine, but for the purposes > of a AWDR 2nd Edition, I also need to run Rails 1.8.6. > > I looked around for a bit to find articles on how to do this, but I''m > coming up short. > > Is there anyone out there that knows how to pull this off?If it''s just for learning, go get Locomotive. It''s a self-contained pre-2.0 rails installation. When you''re done with it, just drop the folder in the trash. If you also get MAMP you''ll have a self-contained Mysql installation too. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Thanks! That worked like a charm. - Justin On Sat, May 10, 2008 at 12:43 PM, T K <tek.katu@gmail.com> wrote:> > The second edition is based on Rails 1.2.3. > > > You can specify the version when you install Rails. > > sudo gem install rails -v 1.2.3 -include-dependencies > > If you are new to Rails and don't wanna be confused with multiple > installations, I would suggest you uninstall Rails 2.0.2 first. > > sudo gem uninstall -v 2.0.2 rails > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk@googlegroups.com To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Justin, Alternatively, you can *keep* your 2.02 and install 1.2.3 on the same machine. To specify which rails version to use, enter this when creating the app: rails _1.2.3_ appname instead of rails appname *keep the underscores around the version number. ./L On May 10, 9:28 am, Justin Kozuch <justinkoz...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi, > > I am currently running Rails 2.0.2 on my machine, but for the purposes > of a AWDR 2nd Edition, I also need to run Rails 1.8.6. > > I looked around for a bit to find articles on how to do this, but I''m > coming up short. > > Is there anyone out there that knows how to pull this off? > > Thanks, > > Justin--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Awesome! I was trying to figure out how to create rails projects using a specific version number, thanks! I have 2.0.2 and 1.2.3 installed on the same machine and it seems to be working fine so far. - Justin On Mon, May 12, 2008 at 2:14 AM, lvizon <lvizon-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > Justin, > > Alternatively, you can *keep* your 2.02 and install 1.2.3 on the same > machine. > > To specify which rails version to use, enter this when creating the > app: > > rails _1.2.3_ appname > > instead of > > rails appname > > *keep the underscores around the version number. > > ./L > > On May 10, 9:28 am, Justin Kozuch <justinkoz...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > Hi, > > > > I am currently running Rails 2.0.2 on my machine, but for the purposes > > of a AWDR 2nd Edition, I also need to run Rails 1.8.6. > > > > I looked around for a bit to find articles on how to do this, but I''m > > coming up short. > > > > Is there anyone out there that knows how to pull this off? > > > > Thanks, > > > > Justin > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hi , i want the same. i install the rails versions 1.2.3 and 2.0.2 in my ubuntu8.4 . but i unable to create project with versions which i want. its creating with 2.0.2 only ,not able to creating with 1.2.3 version. i used the command : rails _1.2.3_ myapp . plz help me . is there anything wrong i did. On May 12, 11:14 am, lvizon <lvi...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Justin, > > Alternatively, you can *keep* your 2.02 and install 1.2.3 on the same > machine. > > To specify whichrailsversion to use, enter this when creating the > app: > > rails_1.2.3_ appname > > instead of > > railsappname > > *keep the underscores around the version number. > > ./L > > On May 10, 9:28 am, Justin Kozuch <justinkoz...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > Hi, > > > I am currently runningRails2.0.2 on my machine, but for the purposes > > of a AWDR 2nd Edition, I also need to runRails1.8.6. > > > I looked around for a bit to find articles on how to do this, but I''m > > coming up short. > > > Is there anyone out there that knows how to pull this off? > > > Thanks, > > > Justin--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hi , but its not working for me . i am using rails versions 1.2.3 and 2.0.2 . but tha command rails _12.3_ appname not working for me. its creating only in rails 2.0.2 even if i gave 1.2.3 . my os is ubuntu8.4 . plz suggest solutin On May 12, 7:07 pm, "Justin Kozuch" <justinkoz...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Awesome! I was trying to figure out how to create rails projects using a > specific version number, thanks! > > I have 2.0.2 and 1.2.3 installed on the same machine and it seems to be > working fine so far. > > - Justin > > On Mon, May 12, 2008 at 2:14 AM, lvizon <lvi...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > Justin, > > > Alternatively, you can *keep* your 2.02 and install 1.2.3 on the same > > machine. > > > To specify which rails version to use, enter this when creating the > > app: > > > rails _1.2.3_ appname > > > instead of > > > rails appname > > > *keep the underscores around the version number. > > > ./L > > > On May 10, 9:28 am, Justin Kozuch <justinkoz...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > Hi, > > > > I am currently running Rails 2.0.2 on my machine, but for the purposes > > > of a AWDR 2nd Edition, I also need to run Rails 1.8.6. > > > > I looked around for a bit to find articles on how to do this, but I''m > > > coming up short. > > > > Is there anyone out there that knows how to pull this off? > > > > Thanks, > > > > Justin--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---