Dear all I am newbie in ruby on rail and i have some question about how to delete project by rails. when i wanted to create project, I can use rails new project -d *postgresql *but when i wanted to delete project i don''t know the command. Regards -- 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/msg/rubyonrails-talk/-/rR4ESKAcdO8J. For more options, visit https://groups.google.com/groups/opt_out.
On 20 April 2013 07:13, Thaweesak Choosri <thaweesak.choo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Dear all > I am newbie in ruby on rail and i have some question about how to delete > project by rails. > > when i wanted to create project, I can use rails new project -d postgresql > but when i wanted to delete project i don''t know the command.Just delete the complete folder (project in the example you showed). 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 For more options, visit https://groups.google.com/groups/opt_out.
On Sat, Apr 20, 2013 at 3:35 AM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> Just delete the complete folder (project in the example you showed).One caveat: if you installed gems into an external gemset, those will hang around. A couple alternative: - Put them in a project-specific rvm gemset when starting the project, then delete that too when you want to delete the alternative. If you feel like manipulating your gem path manually (or via other tools), you can put them in various other places. - Have bundler put them in vendor or some such subdir, when you start the project, and that will get deleted along with the project directory. -Dave -- Dave Aronson, the T. Rex of Codosaurus LLC, secret-cleared freelance software developer available for contracts or temp employment. See information at http://www.Codosaur.us/. -- 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 For more options, visit https://groups.google.com/groups/opt_out.