Craig Cherlet
2011-May-12 21:04 UTC
Rails server comand won''t start server: creates new directories
When I try to start the rails server in my project root directory, rails
executes the create script.
Was working yesterday and now doing this.
Any help?
My out put is below.
VACSAL50841-2:sample_app ccherlet$ rails server
create
create app/controllers
create app/helpers
create app/models
create app/views/layouts
create config/environments
create config/initializers
create config/locales
create db
create doc
create lib
create lib/tasks
create log
create public/images
create public/javascripts
create public/stylesheets
create script/performance
create test/fixtures
create test/functional
create test/integration
create test/performance
--
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.
Brett Turner
2011-May-12 21:57 UTC
Re: Rails server comand won''t start server: creates new directories
Try ''ruby script/server'' On May 12, 5:04 pm, Craig Cherlet <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> When I try to start the rails server in my project root directory, rails > executes the create script. > > Was working yesterday and now doing this. > > Any help? > > My out put is below. > > VACSAL50841-2:sample_app ccherlet$ rails server > create > create app/controllers > create app/helpers > create app/models > create app/views/layouts > create config/environments > create config/initializers > create config/locales > create db > create doc > create lib > create lib/tasks > create log > create public/images > create public/javascripts > create public/stylesheets > create script/performance > create test/fixtures > create test/functional > create test/integration > create test/performance > > -- > Posted viahttp://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@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Eugen Ciur
2011-May-13 06:41 UTC
Re: Rails server comand won''t start server: creates new directories
> Was working yesterday and now doing this.Probably yesterday you installed rvm and switched to rvm 1.9.2 with new rails 3. When you logged in today your rvm, it used as default system''s ruby which contains rails 2.x. Use this command to make your ruby 1.9.2 + rails3 environment default one for rvm rvm --default use 1.9.2 ---- http://blog.eugen.co -- 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.