InterviewSolution
Saved Bookmarks
| 1. |
What Is Bundler? |
|
Answer» BUNDLER is a new concept introduced in Rails3, which helps to you manage your gems for the application. After specifying gems in your Gemfile, you need to do a bundle INSTALL. If the GEM is available in the system, bundle will USE that else it will PICK up. Bundler is a new concept introduced in Rails3, which helps to you manage your gems for the application. After specifying gems in your Gemfile, you need to do a bundle install. If the gem is available in the system, bundle will use that else it will pick up. |
|