Skip to content

Commit 02c9cb9

Browse files
committedApr 10, 2014
Update the readme with latest spec/ updates info
[ci skip]
1 parent 893b9c1 commit 02c9cb9

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed
 

‎README.md

+30-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Opal is a ruby to javascript source-to-source compiler. It also has an
88
implementation of the ruby corelib.
99

1010
Opal is [hosted on github](http://github.com/opal/opal), and there
11-
is a Freenode IRC channel at [#opal](http://webchat.freenode.net/?channels=opal),
11+
is a Freenode IRC channel at [#opal](http://webchat.freenode.net/?channels=opal),
1212
ask questions on [stackoverflow#opalrb](http://stackoverflow.com/questions/ask?tags=opalrb).
1313

1414

@@ -58,17 +58,36 @@ First, install dependencies:
5858

5959
$ bundle install
6060

61-
Rubyspecs must be cloned as a gitsubmodule:
61+
RubySpec related repos must be cloned as a gitsubmodules:
6262

6363
$ git submodule update --init
6464

65-
Tests can be run with phantomjs using:
65+
The test suite can be run using (requires [phantomjs][]):
6666

6767
$ rake
6868

69+
This will command will run all RSpec and MSpec examples in sequence.
70+
71+
### MSpec
72+
73+
[MSpec][] tests can be run with:
74+
75+
$ rake mspec
76+
6977
Alternatively, you can just load up a rack instance using `rackup spec/config.ru`, and
7078
visit `http://localhost:9292/` in any web browser.
7179

80+
### Rspec
81+
82+
[RSpec][] tests can be run with
83+
84+
$ rake rspec
85+
86+
Alternatively [spectator][] can be used in an autotest fashion with this command:
87+
88+
BASE_DIR_GLOB='lib/opal' SPEC_DIR_GLOB='spec/cli' spectator
89+
90+
7291
## Code Overview
7392

7493
What code is supposed to run where?
@@ -95,6 +114,10 @@ StringScanner, Date, etc.
95114

96115
### spec
97116

117+
* **rubyspecs** (file) a whitelist of RubySpec files to be ran
118+
* **corelib** RubySpec examples (submodule)
119+
* **stdlib** `rubysl-*` examples (submodules)
120+
* **filters** The list of MSpec/RubySpec examples that are either bugs or unsupported
98121
* **opal** opal additions/special behaviour in the runtime/corelib
99122
* **cli** specs for opal lib (parser, lexer, grammar, compiler etc)
100123

@@ -145,3 +168,7 @@ THE SOFTWARE.
145168

146169
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/opal/opal/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
147170

171+
[phantomjs]: http://phantomjs.org
172+
[spectator]: https://github.com/elia/spectator#readme
173+
[MSpec]: https://github.com/rubyspec/mspec#readme
174+
[RSpec]: https://github.com/rspec/rspec#readme

0 commit comments

Comments
 (0)
Please sign in to comment.