0.4 release

This commit is contained in:
Tyler Kellen 2013-02-15 18:53:59 -05:00
parent 3eeb595ff6
commit ae4203471b
5 changed files with 17 additions and 21 deletions

View File

@ -1,3 +1,7 @@
v0.3.1:
date: 2013-02-15
changes:
- First official release for Grunt 0.4.0.
v0.3.1rc7: v0.3.1rc7:
date: 2013-01-22 date: 2013-01-22
changes: changes:

View File

@ -3,24 +3,21 @@
> Run jasmine specs headlessly through PhantomJS. > Run jasmine specs headlessly through PhantomJS.
## Getting Started ## 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 ```shell
npm install grunt-contrib-jasmine --save-dev npm install grunt-contrib-jasmine --save-dev
``` ```
[grunt]: http://gruntjs.com/
[Getting Started]: http://gruntjs.com/getting-started
## Jasmine task ## Jasmine task
_Run this task with the `grunt jasmine` command._ _Run this task with the `grunt jasmine` command._
### Overview Automatically builds and maintains your spec runner and runs your tests headlessly through phantomjs.
grunt-contrib-jasmine 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 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. of jasmine through grunt which served as motivation for all the future work.
@ -138,8 +135,6 @@ watch: {
} }
``` ```
#### Basic Use #### Basic Use
Sample configuration to run Pivotal Labs' example Jasmine application. Sample configuration to run Pivotal Labs' example Jasmine application.
@ -204,6 +199,8 @@ for more information on the RequireJS template.
## Release History ## Release History
* 2013-02-14v0.3.1First official release for Grunt 0.4.0.
* 2013-01-21v0.3.1rc7Exposed phantom and sendMessage to templates
* 2013-01-21v0.3.0rc7Updated dependencies for grunt v0.4.0rc6/rc7 * 2013-01-21v0.3.0rc7Updated dependencies for grunt v0.4.0rc6/rc7
* 2013-01-07v0.3.0rc5Updating 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) * 2013-01-07v0.3.0rc5Updating 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-02v0.2.0Generalized requirejs template config Added loader plugin Tests for templates Updated jasmine to 1.3.0 * 2012-12-02v0.2.0Generalized 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) 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.*

View File

@ -1,5 +1,3 @@
## Basic Use ## Basic Use
Sample configuration to run Pivotal Labs' example Jasmine application. Sample configuration to run Pivotal Labs' example Jasmine application.

View File

@ -1,7 +1,4 @@
# Overview Automatically builds and maintains your spec runner and runs your tests headlessly through phantomjs.
grunt-contrib-jasmine 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 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. of jasmine through grunt which served as motivation for all the future work.

View File

@ -1,7 +1,7 @@
{ {
"name": "grunt-contrib-jasmine", "name": "grunt-contrib-jasmine",
"description": "Run jasmine specs headlessly through PhantomJS.", "description": "Run jasmine specs headlessly through PhantomJS.",
"version": "0.3.1rc7", "version": "0.3.1",
"homepage": "https://github.com/gruntjs/grunt-contrib-jasmine", "homepage": "https://github.com/gruntjs/grunt-contrib-jasmine",
"author": { "author": {
"name": "Grunt Team", "name": "Grunt Team",
@ -29,13 +29,13 @@
}, },
"dependencies": { "dependencies": {
"grunt-lib-phantomjs": "~0.1.0", "grunt-lib-phantomjs": "~0.1.0",
"grunt": "0.4.0rc7",
"rimraf": "~2.0.3" "rimraf": "~2.0.3"
}, },
"devDependencies": { "devDependencies": {
"grunt-contrib-internal": "*", "grunt-contrib-internal": "~0.4.0",
"grunt-contrib-nodeunit": "0.1.2rc6", "grunt-contrib-nodeunit": "~0.1.2",
"grunt-contrib-jshint": "0.1.1rc6" "grunt-contrib-jshint": "~0.1.1",
"grunt": "~0.4.0"
}, },
"keywords": [ "keywords": [
"gruntplugin", "gruntplugin",