File tree 3 files changed +10
-8
lines changed
3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 3
3
4
4
gem 'rake'
5
5
6
- # As we monkey patch a lot, work of a specific commit on github
7
- gem 'rspec-support' , :github => 'rspec/rspec-support' , :ref => 'f235ccb129'
8
- gem 'rspec-expectations' , :github => 'rspec/rspec-expectations' , :ref => 'd3277fd42e'
9
- gem 'rspec-core' , :github => 'rspec/rspec-core' , :ref => 'ed8898c58b'
10
- gem 'rspec-mocks' , :github => 'rspec/rspec-mocks' , :ref => 'a2f952a025'
11
-
12
- gem 'rspec' , :github => 'rspec/rspec'
6
+ gem 'rspec' , '3.0.0.beta1'
7
+ gem 'rspec-support' , '3.0.0.beta1'
8
+ gem 'rspec-core' , '3.0.0.beta1'
9
+ gem 'rspec-expectations' , '3.0.0.beta1'
10
+ gem 'rspec-mocks' , '3.0.0.beta1'
Original file line number Diff line number Diff line change 31
31
require 'rspec/core/shared_example_group/collection'
32
32
require 'rspec/core/shared_example_group'
33
33
require 'rspec/core/example_group'
34
+
34
35
require 'rspec/core'
35
36
require 'rspec-expectations'
37
+ require 'rspec/mocks'
36
38
37
39
# we want access to BaseFormatter
38
40
require 'rspec/core/formatters/base_formatter'
39
41
40
42
# For now, we don't support mocking. This placeholder in rspec-core allows that.
41
- require 'rspec/core/mocking/with_absolutely_nothing '
43
+ require 'rspec/core/mocking/with_rspec '
Original file line number Diff line number Diff line change 1
1
require 'bundler'
2
2
Bundler . require
3
3
4
+ require 'opal-sprockets'
5
+
4
6
Opal ::Processor . source_map_enabled = false
5
7
6
8
run Opal ::Server . new { |s |
You can’t perform that action at this time.
0 commit comments