We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78ffc87 commit 4b82a49Copy full SHA for 4b82a49
.gitignore
@@ -8,3 +8,4 @@
8
/spec/reports/
9
/tmp/
10
.DS_Store
11
+/spec/examples.txt
Gemfile
@@ -3,7 +3,7 @@ source 'https://rubygems.org'
3
# Specify your gem's dependencies in csv-importer.gemspec
4
gemspec
5
6
-gem 'rspec'
+gem 'rspec', '~> 3.3.0'
7
gem 'guard-rspec'
gem 'activemodel'
gem 'simplecov', require: nil
spec/spec_helper.rb
@@ -11,3 +11,7 @@
require 'active_model'
12
13
require 'csv_importer'
14
+
15
+RSpec.configure do |c|
16
+ c.example_status_persistence_file_path = "./spec/examples.txt"
17
+end
0 commit comments