master v1.0.3
Vlad Filippov 9 years ago
parent 70694babbe
commit a5ba9e37c8

@ -1,3 +1,7 @@
v1.0.3:
date: 2016-04-07
changes:
- Move to a non-deprecated sprintf.
v1.0.2:
date: 2016-04-07
changes:

@ -1,4 +1,4 @@
# grunt-contrib-jasmine v1.0.2 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-jasmine.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-jasmine) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/5985958by5rhnh31/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-jasmine/branch/master)
# grunt-contrib-jasmine v1.0.3 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-jasmine.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-jasmine) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/5985958by5rhnh31/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-jasmine/branch/master)
> Run jasmine specs headlessly through PhantomJS
@ -295,6 +295,7 @@ for more information on the RequireJS template.
## Release History
* 2016-04-07v1.0.3Move to a non-deprecated sprintf.
* 2016-04-07v1.0.2Fix sprintf issues in error calls.
* 2016-04-07v1.0.1Allow to use custom bootfile. Doc updates. Fix and use lodash directly.
* 2016-01-26v1.0.0Bump grunt-lib-phantomjs to 1.0.0. Bump jasmine to 2.2.0.
@ -328,4 +329,4 @@ for more information on the RequireJS template.
Task submitted by [Jarrod Overson](http://jarrodoverson.com)
*This file was generated on Thu Apr 07 2016 12:11:03.*
*This file was generated on Thu Apr 07 2016 12:22:30.*

@ -1,7 +1,7 @@
{
"name": "grunt-contrib-jasmine",
"description": "Run jasmine specs headlessly through PhantomJS",
"version": "1.0.2",
"version": "1.0.3",
"author": {
"name": "Grunt Team",
"url": "http://gruntjs.com/"
@ -22,7 +22,7 @@
"jasmine-core": "^2.2.0",
"lodash": "~2.4.1",
"rimraf": "^2.1.4",
"underscore.string": "~3.3.4"
"sprintf-js": "~1.0.3"
},
"devDependencies": {
"grunt": "^0.4.5",

@ -13,7 +13,7 @@ module.exports = function(grunt) {
// node api
var fs = require('fs'),
path = require('path'),
sprintf = require('underscore.string/sprintf');
sprintf = require("sprintf-js").sprintf;
// npm lib
var phantomjs = require('grunt-lib-phantomjs').init(grunt),

Loading…
Cancel
Save