0.4 release
This commit is contained in:
parent
3eeb595ff6
commit
ae4203471b
@ -1,3 +1,7 @@
|
||||
v0.3.1:
|
||||
date: 2013-02-15
|
||||
changes:
|
||||
- First official release for Grunt 0.4.0.
|
||||
v0.3.1rc7:
|
||||
date: 2013-01-22
|
||||
changes:
|
||||
|
17
README.md
17
README.md
@ -3,24 +3,21 @@
|
||||
> Run jasmine specs headlessly through PhantomJS.
|
||||
|
||||
|
||||
|
||||
## Getting Started
|
||||
If you haven't used [grunt][] before, be sure to check out the [Getting Started][] guide, as it explains how to create a [gruntfile][Getting Started] as well as install and use grunt plugins. Once you're familiar with that process, install this plugin with this command:
|
||||
If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
|
||||
|
||||
```shell
|
||||
npm install grunt-contrib-jasmine --save-dev
|
||||
```
|
||||
|
||||
[grunt]: http://gruntjs.com/
|
||||
[Getting Started]: http://gruntjs.com/getting-started
|
||||
|
||||
|
||||
|
||||
## Jasmine task
|
||||
_Run this task with the `grunt jasmine` command._
|
||||
|
||||
### Overview
|
||||
|
||||
grunt-contrib-jasmine automatically builds and maintains your spec runner and runs your tests headlessly through
|
||||
phantomjs
|
||||
Automatically builds and maintains your spec runner and runs your tests headlessly through phantomjs.
|
||||
|
||||
Substantial credit goes to [Camille Reynders](http://creynders.be/) (@creynders) for the first decent implementation
|
||||
of jasmine through grunt which served as motivation for all the future work.
|
||||
@ -138,8 +135,6 @@ watch: {
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
|
||||
#### Basic Use
|
||||
|
||||
Sample configuration to run Pivotal Labs' example Jasmine application.
|
||||
@ -204,6 +199,8 @@ for more information on the RequireJS template.
|
||||
|
||||
## Release History
|
||||
|
||||
* 2013-02-14 v0.3.1 First official release for Grunt 0.4.0.
|
||||
* 2013-01-21 v0.3.1rc7 Exposed phantom and sendMessage to templates
|
||||
* 2013-01-21 v0.3.0rc7 Updated dependencies for grunt v0.4.0rc6/rc7
|
||||
* 2013-01-07 v0.3.0rc5 Updating to work with grunt v0.4.0rc5. Switching to this.filesSrc api. Added JUnit xml output (via Kelvin Luck @vitch) Passing console.log from browser to verbose grunt logging Support for templates as separate node modules Removed internal requirejs template (see grunt-template-jasmine-requirejs)
|
||||
* 2012-12-02 v0.2.0 Generalized requirejs template config Added loader plugin Tests for templates Updated jasmine to 1.3.0
|
||||
@ -215,4 +212,4 @@ for more information on the RequireJS template.
|
||||
|
||||
Task submitted by [Jarrod Overson](http://jarrodoverson.com)
|
||||
|
||||
*This file was generated on Tue Feb 05 2013 10:18:33.*
|
||||
*This file was generated on Fri Feb 15 2013 18:53:30.*
|
||||
|
@ -1,5 +1,3 @@
|
||||
|
||||
|
||||
## Basic Use
|
||||
|
||||
Sample configuration to run Pivotal Labs' example Jasmine application.
|
||||
|
@ -1,7 +1,4 @@
|
||||
# Overview
|
||||
|
||||
grunt-contrib-jasmine automatically builds and maintains your spec runner and runs your tests headlessly through
|
||||
phantomjs
|
||||
Automatically builds and maintains your spec runner and runs your tests headlessly through phantomjs.
|
||||
|
||||
Substantial credit goes to [Camille Reynders](http://creynders.be/) (@creynders) for the first decent implementation
|
||||
of jasmine through grunt which served as motivation for all the future work.
|
||||
|
10
package.json
10
package.json
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "grunt-contrib-jasmine",
|
||||
"description": "Run jasmine specs headlessly through PhantomJS.",
|
||||
"version": "0.3.1rc7",
|
||||
"version": "0.3.1",
|
||||
"homepage": "https://github.com/gruntjs/grunt-contrib-jasmine",
|
||||
"author": {
|
||||
"name": "Grunt Team",
|
||||
@ -29,13 +29,13 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"grunt-lib-phantomjs": "~0.1.0",
|
||||
"grunt": "0.4.0rc7",
|
||||
"rimraf": "~2.0.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"grunt-contrib-internal": "*",
|
||||
"grunt-contrib-nodeunit": "0.1.2rc6",
|
||||
"grunt-contrib-jshint": "0.1.1rc6"
|
||||
"grunt-contrib-internal": "~0.4.0",
|
||||
"grunt-contrib-nodeunit": "~0.1.2",
|
||||
"grunt-contrib-jshint": "~0.1.1",
|
||||
"grunt": "~0.4.0"
|
||||
},
|
||||
"keywords": [
|
||||
"gruntplugin",
|
||||
|
Loading…
Reference in New Issue
Block a user