From the course: Advanced Selenium: Automation Frameworks

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Managing packages with Bundler

Managing packages with Bundler - Selenium Tutorial

From the course: Advanced Selenium: Automation Frameworks

Start my 1-month free trial

Managing packages with Bundler

- [Instructor] So let's take a look at package management in Ruby. The bundler gem is a great Ruby package management system and it makes project creation a snap. In Ruby, individual software packages are called gems and bundler is a gem that builds on the standard Ruby gem tool for package management. To find out more about bundler, I'd encourage you to visit bundler.io in your browser. To find out if you have bundler installed, just open a terminal and run the command gem which bundler. If you see an error on your screen just like on mine that says bundler can't be found, go ahead and run gem install bundler and you'll bundler set. Now depending on the way that you've got Ruby configured on your system, you may also have to run the sudo command to elevate to admin privileges. Once you have bundler installed, just navigate to the directory you want to create your Ruby project in and type bundler gem tutorial…

Contents