Point example_runner.html to latest jasmine version.
Update README.
This commit is contained in:
parent
82e04c327a
commit
40b0c49d25
|
@ -9,24 +9,11 @@ Quick Start
|
||||||
2. Open `example/example_runner.html` in your favorite browser.
|
2. Open `example/example_runner.html` in your favorite browser.
|
||||||
|
|
||||||
For running within a Ruby environment, including automated execution with Selenium, please use
|
For running within a Ruby environment, including automated execution with Selenium, please use
|
||||||
the [jasmine-ruby gem](http://github.com/pivotal/jasmine-ruby).
|
the [jasmine gem](http://github.com/pivotal/jasmine-gem).
|
||||||
|
|
||||||
Releases
|
|
||||||
----------
|
|
||||||
0.10.0 [[download]](http://cloud.github.com/downloads/pivotal/jasmine/jasmine-0.10.0.zip)
|
|
||||||
|
|
||||||
0.9.0 [[download]](http://github.com/pivotal/jasmine/zipball/0.9.0)
|
|
||||||
|
|
||||||
0.8.0 [[download]](http://github.com/pivotal/jasmine/zipball/0.8.0)
|
|
||||||
|
|
||||||
### Which Release Should I Use?
|
### Which Release Should I Use?
|
||||||
|
|
||||||
Please use the latest version unless you have a good reason not to. Some of this documentation may not be applicable to older versions.
|
Please use the latest version unless you have a good reason not to. Some of this documentation may not be applicable to older versions. Please see [[Release Notes]](http://wiki.github.com/pivotal/jasmine/release-notes) for change information.
|
||||||
|
|
||||||
Pull Requests
|
|
||||||
----------
|
|
||||||
We welcome your contributions! Jasmine is currently maintained by Davis Frank ([infews](http://github.com/infews)), Rajan Agaskar ([ragaskar](http://github.com/ragaskar)), and Christian Williams ([Xian](http://github.com/Xian)). You can help us by removing all other recipients from your pull request.
|
|
||||||
|
|
||||||
|
|
||||||
Why Another JavaScript TDD/BDD Framework?
|
Why Another JavaScript TDD/BDD Framework?
|
||||||
-----------
|
-----------
|
||||||
|
@ -476,13 +463,17 @@ We now have a Google Group for support & discussion.
|
||||||
* Homepage: [http://groups.google.com/group/jasmine-js](http://groups.google.com/group/jasmine-js)
|
* Homepage: [http://groups.google.com/group/jasmine-js](http://groups.google.com/group/jasmine-js)
|
||||||
* Group email: [jasmine-js@googlegroups.com](jasmine-js@googlegroups.com)
|
* Group email: [jasmine-js@googlegroups.com](jasmine-js@googlegroups.com)
|
||||||
* Current build status of Jasmine is visible at [ci.pivotallabs.com](http://ci.pivotallabs.com)
|
* Current build status of Jasmine is visible at [ci.pivotallabs.com](http://ci.pivotallabs.com)
|
||||||
|
* Pivotal Tracker project: [http://www.pivotaltracker.com/projects/10606](http://www.pivotaltracker.com/projects/10606)
|
||||||
|
* Twitter: [@JasmineBDD](http://twitter.com/JasmineBDD)
|
||||||
|
|
||||||
## Maintainers
|
## Maintainers
|
||||||
|
|
||||||
* [Davis W. Frank](mailto:dwfrank@pivotallabs.com), Pivotal Labs
|
* [Davis W. Frank](mailto:dwfrank@pivotallabs.com), Pivotal Labs
|
||||||
* [Rajan Agaskar](mailto:rajan@pivotallabs.com), Pivotal Labs
|
* [Rajan Agaskar](mailto:rajan@pivotallabs.com), Pivotal Labs
|
||||||
* [Christian Williams](mailto:xian@pivotallabs.com), Pivotal Labs
|
* [Christian Williams](mailto:xian@pivotallabs.com), Pivotal Labs
|
||||||
|
|
||||||
|
## Developers
|
||||||
|
We welcome your contributions! Jasmine is currently maintained by Davis Frank ([infews](http://github.com/infews)), Rajan Agaskar ([ragaskar](http://github.com/ragaskar)), and Christian Williams ([Xian](http://github.com/Xian)). You can help us by removing all other recipients from your pull request.
|
||||||
|
|
||||||
## Acknowledgments
|
## Acknowledgments
|
||||||
* A big shout out to the various JavaScript test framework authors, especially TJ for [JSpec](http://github.com/visionmedia/jspec/tree/master) - we played with it a bit before deciding that we really needed to roll our own.
|
* A big shout out to the various JavaScript test framework authors, especially TJ for [JSpec](http://github.com/visionmedia/jspec/tree/master) - we played with it a bit before deciding that we really needed to roll our own.
|
||||||
* Thanks to Pivot [Jessica Miller](http://www.jessicamillerworks.com/) for our fancy pass/fail/pending icons
|
* Thanks to Pivot [Jessica Miller](http://www.jessicamillerworks.com/) for our fancy pass/fail/pending icons
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<head>
|
<head>
|
||||||
<title>Jasmine Test Runner</title>
|
<title>Jasmine Test Runner</title>
|
||||||
<link rel="stylesheet" type="text/css" href="../lib/jasmine.css">
|
<link rel="stylesheet" type="text/css" href="../lib/jasmine.css">
|
||||||
<script type="text/javascript" src="../lib/jasmine-0.10.4.js"></script>
|
<script type="text/javascript" src="../lib/jasmine-0.11.0.js"></script>
|
||||||
<script type="text/javascript" src="../lib/TrivialReporter.js"></script>
|
<script type="text/javascript" src="../lib/TrivialReporter.js"></script>
|
||||||
<script type="text/javascript" src="../lib/consolex.js"></script>
|
<script type="text/javascript" src="../lib/consolex.js"></script>
|
||||||
<script type="text/javascript" src="spec/example_suite.js"></script>
|
<script type="text/javascript" src="spec/example_suite.js"></script>
|
||||||
|
|
Loading…
Reference in New Issue