Created
June 10, 2017 15:12
-
-
Save jhas3c/a0f1bcf1c080fc550ae20cd2234b02b1 to your computer and use it in GitHub Desktop.
guard-in-rails
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Add following gem to development group of Gemfile | |
gem 'guard', '~> 2.14.0' | |
gem 'guard-rspec', '~> 4.7.2' | |
gem 'guard-cucumber', '~> 2.1.2' | |
2. Run the following command to install the gems: | |
bundle install | |
3. Also run the command: | |
guard init | |
4. Run the command: | |
bundle binstubs guard | |
5. Run: | |
cucumber --init | |
Note: Please check/update to latest version when you are using this gems. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment