File tree 3 files changed +23
-11
lines changed
3 files changed +23
-11
lines changed Original file line number Diff line number Diff line change 4
4
gem 'bump'
5
5
gem 'ffi' , platform : [ :mingw ]
6
6
gem 'rake'
7
- gem 'rspec' , '~>2'
7
+ gem 'rspec'
8
8
# gem 'dispel', :path => "~/Code/tools/dispel"
Original file line number Diff line number Diff line change 13
13
bump (0.5.0 )
14
14
clipboard (1.0.5 )
15
15
curses (1.4.4 )
16
- diff-lcs (1.2.5 )
16
+ diff-lcs (1.5.0 )
17
17
dispel (0.0.7 )
18
18
curses
19
19
language_sniffer (1.0.2 )
20
20
plist (3.1.0 )
21
21
rake (10.1.1 )
22
- rspec (2.14.1 )
23
- rspec-core (~> 2.14.0 )
24
- rspec-expectations (~> 2.14.0 )
25
- rspec-mocks (~> 2.14.0 )
26
- rspec-core (2.14.7 )
27
- rspec-expectations (2.14.5 )
28
- diff-lcs (>= 1.1.3 , < 2.0 )
29
- rspec-mocks (2.14.6 )
22
+ rspec (3.12.0 )
23
+ rspec-core (~> 3.12.0 )
24
+ rspec-expectations (~> 3.12.0 )
25
+ rspec-mocks (~> 3.12.0 )
26
+ rspec-core (3.12.2 )
27
+ rspec-support (~> 3.12.0 )
28
+ rspec-expectations (3.12.3 )
29
+ diff-lcs (>= 1.2.0 , < 2.0 )
30
+ rspec-support (~> 3.12.0 )
31
+ rspec-mocks (3.12.5 )
32
+ diff-lcs (>= 1.2.0 , < 2.0 )
33
+ rspec-support (~> 3.12.0 )
34
+ rspec-support (3.12.0 )
30
35
textpow (1.3.1 )
31
36
plist (>= 3.0.1 )
32
37
@@ -37,7 +42,7 @@ DEPENDENCIES
37
42
bump
38
43
ffi
39
44
rake
40
- rspec ( ~> 2 )
45
+ rspec
41
46
ruco !
42
47
43
48
BUNDLED WITH
Original file line number Diff line number Diff line change @@ -34,3 +34,10 @@ def self.benchmark
34
34
def log ( text )
35
35
puts "LOG: #{ text } "
36
36
end
37
+
38
+ RSpec . configure do |config |
39
+ config . expect_with ( :rspec ) { |c | c . syntax = [ :expect , :should ] }
40
+ config . mock_with :rspec do |mocks |
41
+ mocks . syntax = [ :should , :receive ]
42
+ end
43
+ end
You can’t perform that action at this time.
0 commit comments