Ruby on Rails - bundler in ruby on rails - ruby on rails tutorial - rails guides - rails tutorial - ruby rails
Bundler
- The easiest way to handle and manage gems is by using bundler. Bundler is a package manager comparable to bower.
- To use bundler we first need to install it.
gem install bundler
Clicking "Copy Code" button will copy the code into the clipboard - memory. Please paste(Ctrl+V) it in your destination. The code will get pasted. Happy coding from Wikitechy - ruby on rails tutorial - rails guides - ruby rails - rubyonrails - learn ruby on rails - team
- After we have bundler up and running all we need to do is add gems to our Gemfile and run
bundle
Clicking "Copy Code" button will copy the code into the clipboard - memory. Please paste(Ctrl+V) it in your destination. The code will get pasted. Happy coding from Wikitechy - ruby on rails tutorial - rails guides - ruby rails - rubyonrails - learn ruby on rails - team
- in our terminal. This installs our newly added gems to our project. Should an issue arise, we would get a prompt in our terminal.