File tree 3 files changed +33
-208
lines changed
3 files changed +33
-208
lines changed Original file line number Diff line number Diff line change @@ -35,12 +35,7 @@ Visit the page in any browser and view the console:
35
35
## Things to fix
36
36
37
37
` opal/opal-rspec/fixes.rb ` contains a few bug fixes that need to be merged upstream
38
- to opal itself. In app/rspec we have to stub various rspec files.
39
-
40
- ### rspec/core.rb
41
-
42
- * ** line 1** : ` require_rspec ` to fake require_relative doesnt work at runtime.
43
- opal has to include all dependencies into build.
38
+ to opal itself.
44
39
45
40
## License
46
41
Original file line number Diff line number Diff line change
1
+ require 'set'
2
+ require 'time'
3
+ require 'rbconfig'
4
+
1
5
require 'rspec/support'
6
+
7
+ require 'rspec/core/version'
8
+
9
+ require 'rspec/support/caller_filter'
10
+
11
+ require 'rspec/core/flat_map'
12
+ require 'rspec/core/filter_manager'
13
+ require 'rspec/core/dsl'
14
+ require 'rspec/core/warnings'
15
+ require 'rspec/core/reporter'
16
+
17
+ require 'rspec/core/hooks'
18
+ require 'rspec/core/memoized_helpers'
19
+ require 'rspec/core/metadata'
20
+ require 'rspec/core/pending'
21
+ require 'rspec/core/formatters'
22
+ require 'rspec/core/ordering'
23
+
24
+ require 'rspec/core/world'
25
+ require 'rspec/core/configuration'
26
+ require 'rspec/core/option_parser'
27
+ require 'rspec/core/configuration_options'
28
+ require 'rspec/core/command_line'
29
+ require 'rspec/core/runner'
30
+ require 'rspec/core/example'
31
+ require 'rspec/core/shared_example_group/collection'
32
+ require 'rspec/core/shared_example_group'
33
+ require 'rspec/core/example_group'
2
34
require 'rspec/core'
3
35
require 'rspec-expectations'
4
36
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments