Created
August 1, 2013 14:14
-
-
Save paulspencerwilliams/6131755 to your computer and use it in GitHub Desktop.
Script to reproduce Error when running with Rails4, Ruby2 - https://github.com/netzpirat/guard-cucumber/issues/42
This file contains 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
#/usr/bin/env ruby | |
rails new BugReproduce -T | |
cd BugReproduce | |
echo "group :test do" >> Gemfile | |
echo " gem 'rspec-rails'" >> Gemfile | |
echo " gem 'cucumber-rails'" >> Gemfile | |
echo " gem 'database_cleaner'" >> Gemfile | |
echo "end" >> Gemfile | |
echo "group :development do" >> Gemfile | |
echo " gem 'guard-rspec'" >> Gemfile | |
echo " gem 'guard-cucumber'" >> Gemfile | |
echo "end" >> Gemfile | |
rails generate rspec:install | |
rails generate cucumber:install | |
guard init rspec | |
guard init cucumber | |
guard |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment