Hello List, Label me a newb, but how do you install Rails 3 on your Mac? Google sent me to these URLs: http://weblog.rubyonrails.org/2010/2/5/rails-3-0-beta-release/ http://guides.rails.info/3_0_release_notes.html http://asciicasts.com/episodes/200-rails-3-beta-and-rvm From early Feb 2010 I see this short recipe: gem install tzinfo builder memcache-client rack rack-test rack-mount erubis mail text-format thor bundler i18n gem install rails --pre On April 1 2010 we have this from DHH: gem install rails --prerelease after you make sure you’re on Ruby Gems 1.3.6 with gem update --system But today is June 4 2010 and I''m curious if there is a more current way to install Rails 3 on a Mac? Also I noticed this on github.com: http://github.com/rails/rails/tree/v3.0.0.beta.3 How do I install that? If it were rails 2.x I would just git-clone it into /vendor/ and call it /rails/ Side note, my Ruby comes from rvm and it currently looks like this: $ $ ruby -v ruby 1.9.3dev (2010-06-04 trunk 28157) [i386-darwin9.8.0] $ $ $ $ gem list *** LOCAL GEMS *** rake (0.8.7) $ $ $ $ which gem /Users/maco/.rvm/rubies/ruby-1.9.2-head/bin/gem $ $ $ $ gem -v 1.3.7 $ $ Help !?!? -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@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.
Although i installed my RoR 3 with the precedence command , but i recommend u the lazy package RubyStack http://bitnami.org/stack/rubystack give it a try! -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
ShellScripter wrote:> Although i installed my RoR 3 with the precedence command , but i > recommend u the lazy package RubyStack > http://bitnami.org/stack/rubystack > give it a try!Irrelevant to the question and bad advice anyway. Rubystack doesn''t seem particularly well suited to Mac OS. Best, -- Marnen Laibow-Koser http://www.marnen.org marnen-sbuyVjPbboAdnm+yROfE0A@public.gmane.org -- Posted via http://www.ruby-forum.com/. -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Simplest way: Make you are up to date with rubygems, which is what DHH was referring to with gem update --system Then run: gem install rails --pre If you are NOT using RVM, add sudo in front of each of those. Niels On Jun 4, 2010, at 6:04 PM, Audrey Lee wrote:> Hello List, > > Label me a newb, but how do you install Rails 3 on your Mac? > > Google sent me to these URLs: > > http://weblog.rubyonrails.org/2010/2/5/rails-3-0-beta-release/ > http://guides.rails.info/3_0_release_notes.html > http://asciicasts.com/episodes/200-rails-3-beta-and-rvm > > From early Feb 2010 I see this short recipe: > > gem install tzinfo builder memcache-client rack rack-test rack-mount > erubis mail text-format thor bundler i18n > > gem install rails --pre > > On April 1 2010 we have this from DHH: > > gem install rails --prerelease after you make sure you’re on Ruby Gems > 1.3.6 with gem update --system > > > But today is June 4 2010 and I''m curious if there is a more current > way to install Rails 3 on a Mac? > > Also I noticed this on github.com: > > http://github.com/rails/rails/tree/v3.0.0.beta.3 > > How do I install that? > > If it were rails 2.x I would just git-clone it into /vendor/ and call it /rails/ > > Side note, my Ruby comes from rvm and it currently looks like this: > > $ > $ ruby -v > ruby 1.9.3dev (2010-06-04 trunk 28157) [i386-darwin9.8.0] > $ > $ > > $ > $ gem list > > *** LOCAL GEMS *** > > rake (0.8.7) > $ > $ > > > $ > $ which gem > /Users/maco/.rvm/rubies/ruby-1.9.2-head/bin/gem > $ > $ > > $ > $ gem -v > 1.3.7 > $ > $ > > Help !?!? > > -- > 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >
Have you checked this -- http://railscasts.com/episodes/200-rails-3-beta-and-rvm On Thu, Jun 10, 2010 at 8:04 AM, Niels Meersschaert <nmeersschaert-ee4meeAH724@public.gmane.org>wrote:> Simplest way: > > Make you are up to date with rubygems, which is what DHH was referring to > with > > gem update --system > > Then run: > > gem install rails --pre > > If you are NOT using RVM, add sudo in front of each of those. > > Niels > > On Jun 4, 2010, at 6:04 PM, Audrey Lee wrote: > > > Hello List, > > > > Label me a newb, but how do you install Rails 3 on your Mac? > > > > Google sent me to these URLs: > > > > http://weblog.rubyonrails.org/2010/2/5/rails-3-0-beta-release/ > > http://guides.rails.info/3_0_release_notes.html > > http://asciicasts.com/episodes/200-rails-3-beta-and-rvm > > > > From early Feb 2010 I see this short recipe: > > > > gem install tzinfo builder memcache-client rack rack-test rack-mount > > erubis mail text-format thor bundler i18n > > > > gem install rails --pre > > > > On April 1 2010 we have this from DHH: > > > > gem install rails --prerelease after you make sure you’re on Ruby Gems > > 1.3.6 with gem update --system > > > > > > But today is June 4 2010 and I''m curious if there is a more current > > way to install Rails 3 on a Mac? > > > > Also I noticed this on github.com: > > > > http://github.com/rails/rails/tree/v3.0.0.beta.3 > > > > How do I install that? > > > > If it were rails 2.x I would just git-clone it into /vendor/ and call it > /rails/ > > > > Side note, my Ruby comes from rvm and it currently looks like this: > > > > $ > > $ ruby -v > > ruby 1.9.3dev (2010-06-04 trunk 28157) [i386-darwin9.8.0] > > $ > > $ > > > > $ > > $ gem list > > > > *** LOCAL GEMS *** > > > > rake (0.8.7) > > $ > > $ > > > > > > $ > > $ which gem > > /Users/maco/.rvm/rubies/ruby-1.9.2-head/bin/gem > > $ > > $ > > > > $ > > $ gem -v > > 1.3.7 > > $ > > $ > > > > Help !?!? > > > > -- > > 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > . > > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > > > >-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@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.