[Rails] Re: Can't quit server in Rails 3

2010-08-30 Thread pauld
Thank you, you caught my dumb newbie mistake. Thanks to all of your for your time and help. Paul Denlinger On Aug 30, 8:12 pm, Chris Mear wrote: > On 30 Aug 2010, at 13:03, pauld wrote: > > > > > > > Thanks for the detailed kill instructions; but it still doesn't work. > > See terminal below: >

Re: [Rails] Re: Can't quit server in Rails 3

2010-08-30 Thread Chris Mear
On 30 Aug 2010, at 13:03, pauld wrote: > Thanks for the detailed kill instructions; but it still doesn't work. > See terminal below: > > Paul-Denlingers-MacBook-Pro:blog3 pdenlinger$ rails server > /Library/Ruby/Gems/1.8/gems/bundler-1.0.0/lib/bundler/runtime.rb:134: > warning: Insecure world wri

[Rails] Re: Can't quit server in Rails 3

2010-08-30 Thread pauld
Thanks for the detailed kill instructions; but it still doesn't work. See terminal below: Paul-Denlingers-MacBook-Pro:blog3 pdenlinger$ rails server /Library/Ruby/Gems/1.8/gems/bundler-1.0.0/lib/bundler/runtime.rb:134: warning: Insecure world writable dir /Library/Ruby/Gems/1.8 in PATH, mode 04077

[Rails] Re: Can't quit server in Rails 3

2010-08-30 Thread Chris Winslett
> When I hit Command-C to quit the server, nothing happened > either. Try control + c. That'll do donkey. That'll do. If that doesn't work, you could always do the following (assuming you don't have 'pkill' installed): ps aux | grep rails | awk '{print $2}' | xargs kill -9 If you want to sho

[Rails] Re: Can't quit server in Rails 3

2010-08-30 Thread pauld
Here is what I have been getting: Paul-Denlingers-MacBook-Pro:blog3 pdenlinger$ rails server /Library/Ruby/Gems/1.8/gems/bundler-1.0.0/lib/bundler/runtime.rb:134: warning: Insecure world writable dir /Library/Ruby/Gems/1.8 in PATH, mode 040777 => Booting WEBrick => Rails 3.0.0 application starting

Re: [Rails] Re: Can't quit server in Rails 3

2010-08-29 Thread ChenJie|抽屉
On Mon, Aug 30, 2010 at 11:17, pauld wrote: > Hi-- > > My answers below. > > > > On Aug 30, 9:44 am, ChenJie|抽屉 wrote: > > On Mon, Aug 30, 2010 at 08:57, pauld wrote: > > > Just wanted to append some more information. > > > > > Looks like after the rails server starts, it doesn't hand control b

[Rails] Re: Can't quit server in Rails 3

2010-08-29 Thread Davo
To quit the server try control + Break as an alternative! On Aug 30, 11:17 am, pauld wrote: > Hi-- > > My answers below. > > On Aug 30, 9:44 am, ChenJie|抽屉 wrote: > > > > > > > > > > > On Mon, Aug 30, 2010 at 08:57, pauld wrote: > > > Just wanted to append some more information. > > > > Looks

[Rails] Re: Can't quit server in Rails 3

2010-08-29 Thread pauld
Hi-- My answers below. On Aug 30, 9:44 am, ChenJie|抽屉 wrote: > On Mon, Aug 30, 2010 at 08:57, pauld wrote: > > Just wanted to append some more information. > > > Looks like after the rails server starts, it doesn't hand control back > > to bash in the terminal. Say this because the normal pro

Re: [Rails] Re: Can't quit server in Rails 3

2010-08-29 Thread ChenJie|抽屉
On Mon, Aug 30, 2010 at 08:57, pauld wrote: > Just wanted to append some more information. > > Looks like after the rails server starts, it doesn't hand control back > to bash in the terminal. Say this because the normal prompt signs > don't show up in bash. So the question becomes why doesn't it

[Rails] Re: Can't quit server in Rails 3

2010-08-29 Thread pauld
Just wanted to append some more information. Looks like after the rails server starts, it doesn't hand control back to bash in the terminal. Say this because the normal prompt signs don't show up in bash. So the question becomes why doesn't it hand control back to bash, and how can this be changed