When i am create new project "rails new newProject", ruby create rails files and next automaticly launch bundle install and setup standart gems: C:\Sites>rails new demo create README.rdoc . . . create vendor/plugins/.git run bundle install . . . Where is standart gemfile location? Or how change standart set of gems? -- 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.
If you want to find where a particular gem is: Given: heroku gem is installed When: you want to see where it is Then: $ gem which heroku /home/soldiercoder/.rvm/gems/ruby-1.9.2-p290/gems/heroku-2.20.0/lib/ heroku.rb Cheers, SC On Feb 16, 11:40 pm, Maxim Baluev <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> When i am create new project "rails new newProject", ruby create rails > files and next automaticly launch bundle install and setup standart > gems: > > C:\Sites>rails new demo > create README.rdoc > . > . > . > create vendor/plugins/.git > run bundle install > . > . > . > > Where is standart gemfile location? Or how change standart set of gems? > > -- > 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.
On Thu, Feb 16, 2012 at 10:40 PM, Maxim Baluev <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> When i am create new project "rails new newProject", ruby create rails > files and next automaticly launch bundle install and setup standart > gems: > > > C:\Sites>rails new demo > create README.rdoc > . > . > . > create vendor/plugins/.git > run bundle install > . > . >The Gemfile is typically located at the root of your app, in your case it will be in demo So, you could C:\Sites>cd demo C:\Sites>type Gemfile you can modify that file and then re-run it with a command "bundle" or "bundle install" Hope this helps, Anna -- 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.
According to your command prompt you are using Windows where standard file location is: <path_to_your_ruby_installation_folder>\lib\ruby\gems\1.9.1\gems for Ruby 1.9, and for ruby 1.8 <path_to_your_ruby_installation_folder>\lib\ruby\gems\1.8\gems Cheers, Boško Ivanišević http://pragdevnotes.com -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/xqi_4kuV0awJ. 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.
On 17 February 2012 04:40, Maxim Baluev <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> When i am create new project "rails new newProject", ruby create rails > files and next automaticly launch bundle install and setup standart > gems: > > > C:\Sites>rails new demo > create README.rdoc > . > . > . > create vendor/plugins/.git > run bundle install > . > . > . > > > > Where is standart gemfile location? Or how change standart set of gems?Your question may be ambiguous. If you are looking for the file Gemfile where you specify which gems you want then it is in the top level folder of the new rails project, so C:\Sites\demo\Gemfile in the case above. 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@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Seemingly Similar Threads
- Trouble setting up Rails with a JS runtime environment
- How does bundler know whether Gemfile has changed?
- Should a Gem's dependencies be listed in the parent app's Gemfile?
- You have already activated rake 10.0.4, but your Gemfile requires rake 10.0.3.
- What is Rails fixing versions in Gemfile?