Ruby-Selenium
A Ruby gem to help developers write test cases for the UI
Please respect the naming definition as taken from here: https://github.com/airbnb/ruby#naming Comments and tags must respect the naming from: https://rubydoc.info/gems/yard/file/docs/Tags.md Ruby Types are defined here: https://www.geeksforgeeks.org/ruby-data-types/
Note: https://stackoverflow.com/questions/28506769/failed-to-require-a-local-gem/28507368#28507368
How to install dependencies
- Make sure Ruby is installed
ruby -vshould return the current version of the language on your computer - Install bundler using
gem install bundlerto allow you to build the project - Make sure all of your new dependencies are within the Gemfile
- Run
bundle install --path vendor/bundle
How to build a release
- Make sure Ruby is installed
ruby -vshould return the current version of the language on your computer - Install bundler using
gem install bundlerto allow you to build the project - Building is as simple as
gem build ruby-selenium.gemspec
How to publish
- Make sure Ruby is installed
ruby -vshould return the current version of the language on your computer - Make sure you have a built gem
- Using the gem command run the following
gem push [YOUR_GEM_NAME].gem