Skip to content

Commit 97dcd98

Browse files
committedNov 3, 2013
Remove last of the stubbed files
1 parent e7e62da commit 97dcd98

File tree

3 files changed

+33
-208
lines changed

3 files changed

+33
-208
lines changed
 

Diff for: ‎README.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,7 @@ Visit the page in any browser and view the console:
3535
## Things to fix
3636

3737
`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.
4439

4540
## License
4641

Diff for: ‎app/rspec-builder.rb

+32
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,36 @@
1+
require 'set'
2+
require 'time'
3+
require 'rbconfig'
4+
15
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'
234
require 'rspec/core'
335
require 'rspec-expectations'
436

Diff for: ‎app/rspec/core.rb

-202
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.