README.md in guard-rspec-4.7.1 vs README.md in guard-rspec-4.7.2

- old
+ new

@@ -118,9 +118,14 @@ notification: false # Display notification after the specs are done running, default: true run_all: { cmd: 'custom rspec command', message: 'custom message' } # Custom options to use when running all specs title: 'My project' # Display a custom title for the notification, default: 'RSpec results' chdir: 'directory' # run rspec from within a given subdirectory (useful if project has separate specs for submodules) results_file: 'some/path' # use the given file for storing results (instead of default relative path) +bundler_env: :original_env # Specify which Bundler env to run the cmd under, default: :original_env + # Available values: + # :clean_env - old behavior, uses Bundler environment with all bundler-related variables removed. This is deprecated in bundler 1.12.x. + # :original_env (default) - uses Bundler environment present before Bundler was activated + # :inherit - runs inside the current environment ``` ### Using Launchy to view rspec results guard-rspec can be configured to launch a results file in lieu of outputing rspec results to the terminal.