I used IDE to create my first Rails app. It created variety of folders and little auto-generated code as well. One of such file is: database.yaml. I don''t want to start working with this auto-generated code. I want to start with an empty Rails application and add folders and files manually. To do this, which folders and files I need to create manually. Which hierarchy Rails understands? -- 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.
Aziz Bookwala
2012-Apr-28 06:56 UTC
Re: Starting with an empty Rails app. instead of via IDE
Hey Rohit Your IDE probably ran "rails new" for you. This is the command to create a new Rails project. This generates the basic set of files and folders you would need for a new project. On Sat, Apr 28, 2012 at 11:25 AM, Rubyist Rohit <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org>wrote:> I used IDE to create my first Rails app. It created variety of folders > and little auto-generated code as well. One of such file is: > database.yaml. > > I don''t want to start working with this auto-generated code. I want to > start with an empty Rails application and add folders and files > manually. > > To do this, which folders and files I need to create manually. Which > hierarchy Rails understands? > > -- > 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. > >-- - Aziz M. Bookwala -- 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.
Rubyist Rohit
2012-Apr-28 07:00 UTC
Re: Starting with an empty Rails app. instead of via IDE
I intentionally install using this option. Which folders and files are needed if I need to manually create them? -- 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.
Colin Law
2012-Apr-28 08:14 UTC
Re: Re: Starting with an empty Rails app. instead of via IDE
On 28 April 2012 08:00, Rubyist Rohit <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> I intentionally install using this option. Which folders and files are > needed if I need to manually create them?What option? You have not quoted the previous messages so no-one knows what you mean without searching back through previous email messages. Remember this is a mailing list not a forum. To see what folders and files you need then run rails new testapp That will generate the basic files/folders that you need for a rails application. Then for a new app if you do not want to use rails new then just replicate the folders and files that rails new testapp created. Though why you do not want to use rails new (if I understand what you are saying correctly) I can not imagine. Colin -- 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.