Hi Everyone I have installed mongrel gem and in my dev I can able to run my app on mongrel but If I want to shift to webrick how can I shift easily with out uninstalling the mongrel gem Thanks in advance -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/fe3cbe70-0725-4d3c-b60a-6161136c65ec%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
On Wed, Sep 4, 2013 at 9:01 AM, honey ruby <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> I have installed mongrel gem and in my dev I can able to run my app on > mongrel but If I want to shift to webrick how can I shift easily with out > uninstalling the mongrel gemThat depends on how you have mongrel running and I definitely would not shift to webrick, webrick is not a production ready server, of course it''s getting better over the years but there are certainly more robustly designed solutions like Puma and the always seems to be favored Unicorn. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAM5XQnwkCc2RfXfdH2rZso_t_6E5qCuMeze-tC0W%3Dx3enU8hKg%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
Thanks Jordon for your quick response I agree with you but I want to know is do we have any other way to shift the to shift from mongrel to webrick with out uninstall the mongrel gem. If we uninstall the gem rails will pick webrick by default I knew that. Wanna know is there any other alternative for this thing On Wed, Sep 4, 2013 at 7:37 PM, Jordon Bedwell <envygeeks-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On Wed, Sep 4, 2013 at 9:01 AM, honey ruby <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > wrote: > > I have installed mongrel gem and in my dev I can able to run my app on > > mongrel but If I want to shift to webrick how can I shift easily with out > > uninstalling the mongrel gem > > That depends on how you have mongrel running and I definitely would > not shift to webrick, webrick is not a production ready server, of > course it''s getting better over the years but there are certainly more > robustly designed solutions like Puma and the always seems to be > favored Unicorn. > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/CAM5XQnwkCc2RfXfdH2rZso_t_6E5qCuMeze-tC0W%3Dx3enU8hKg%40mail.gmail.com > . > For more options, visit https://groups.google.com/groups/opt_out. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzC%3DKPoig3m1U8BO-o41FCrtzSD9yVoYDiVgPn0J1jpgciw%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
On Wed, Sep 4, 2013 at 7:21 AM, honey ruby <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> do we have any other way to shift the to shift from mongrel to webrickLet''s see: I have a command `rails server` and I wonder if there are command options. Oh, how about I try `rails server --help` ... -- Hassan Schroeder ------------------------ hassan.schroeder-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org http://about.me/hassanschroeder twitter: @hassan -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CACmC4yBQFn%2BaCqWeERn5RUP240V3t2o5NRno8V%2BamjhA5Bfr7w%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
On Wed, Sep 4, 2013 at 9:21 AM, honey ruby <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Thanks Jordon for your quick response I agree with you but I want to know is > do we have any other way to shift the to shift from mongrel to webrick with > out uninstall the mongrel gem. If we uninstall the gem rails will pick > webrick by default I knew that. Wanna know is there any other alternative > for this thingThe option is: rails s <server> So: rails s webrick -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAM5XQny9ohSrqX3T2tp1ZVH3WGUa99cyuM8PKdT5CZFijivcBA%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
Thanks Jordon it worked. On Wed, Sep 4, 2013 at 8:01 PM, Jordon Bedwell <envygeeks-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On Wed, Sep 4, 2013 at 9:21 AM, honey ruby <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > wrote: > > Thanks Jordon for your quick response I agree with you but I want to > know is > > do we have any other way to shift the to shift from mongrel to webrick > with > > out uninstall the mongrel gem. If we uninstall the gem rails will pick > > webrick by default I knew that. Wanna know is there any other alternative > > for this thing > > The option is: rails s <server> > So: rails s webrick > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/CAM5XQny9ohSrqX3T2tp1ZVH3WGUa99cyuM8PKdT5CZFijivcBA%40mail.gmail.com > . > For more options, visit https://groups.google.com/groups/opt_out. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCmTwzvyPSkaCZYKzdi5jkiiTN4V86ateK79dFeOnrwq0g%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
I need some good tutorials to learn rails3 with detail any suggestions plz... On Wed, Sep 4, 2013 at 8:26 PM, honey ruby <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> Thanks Jordon it worked. > > > On Wed, Sep 4, 2013 at 8:01 PM, Jordon Bedwell <envygeeks-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote: > >> On Wed, Sep 4, 2013 at 9:21 AM, honey ruby <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> >> wrote: >> > Thanks Jordon for your quick response I agree with you but I want to >> know is >> > do we have any other way to shift the to shift from mongrel to webrick >> with >> > out uninstall the mongrel gem. If we uninstall the gem rails will pick >> > webrick by default I knew that. Wanna know is there any other >> alternative >> > for this thing >> >> The option is: rails s <server> >> So: rails s webrick >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/rubyonrails-talk/CAM5XQny9ohSrqX3T2tp1ZVH3WGUa99cyuM8PKdT5CZFijivcBA%40mail.gmail.com >> . >> For more options, visit https://groups.google.com/groups/opt_out. >> > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCn437mUFo3%2B5e3o0Wsph5dBnaxPUL2uAMeqP7oUd1038Q%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
On 4 September 2013 16:01, honey ruby <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> I need some good tutorials to learn rails3 with detail any suggestionsAs always, railstutorial.org which is free to use online, though I see this was suggested to you (by myself and others) in August 2012, February 2012, December 2011 and August 2011 Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAL%3D0gLu3GEi-U3nObMyCS%3Dhf1qvUyjASMhW%2BHL9NuukrVB14bA%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.