Skip to content

Commit e388aa4

Browse files
committed
0.1.9 Change Test for whitespace before comment block
apidoc#2
1 parent eedf508 commit e388aa4

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Creates from input files a documentation in path `doc/`.
1414

1515
## Changelog
1616

17+
* `0.1.9` Fix for whitespace before comment block (Brandon Hamilton https://github.com/apidoc/apidoc/pull/2)
1718
* `0.1.8` Change templates, enable navigation scroll.
1819
* `0.1.7` Add @apiIgnore. Update grunt Modules.
1920
* `0.1.6` Fix OSX executable

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apidoc",
3-
"version": "0.1.8",
3+
"version": "0.1.9",
44
"description": "RESTful web API Documentation Generator",
55
"author": "Peter Rottmann <rottmann@inveris.de>",
66
"license": "MIT",

test/fixtures/api_project.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
define({
22
"name": "apidoc",
3-
"version": "0.1.8",
3+
"version": "0.1.9",
44
"description": "RESTful web API Documentation Generator",
55
"apidoc": "",
66
"generator": {
7-
"version": "0.1.8",
7+
"version": "0.1.9",
88
"time": "2013-04-12T16:50:18.630Z"
99
}
1010
});

test/fixtures/api_project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "apidoc",
3-
"version": "0.1.8",
3+
"version": "0.1.9",
44
"description": "RESTful web API Documentation Generator",
55
"apidoc": "",
66
"generator": {
7-
"version": "0.1.8",
7+
"version": "0.1.9",
88
"time": "2013-04-12T16:50:18.630Z"
99
}
1010
}

test/fixtures/example/example.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
* @test Ignore this block. No apiDoc.
33
*/
44

5-
/**
6-
* @apiIgnore Ignore this block, apiIgnore is set.
7-
* @api {get} /ignore/me
8-
*/
5+
/**
6+
* @apiIgnore Ignore this block, apiIgnore is set.
7+
* @api {get} /ignore/me
8+
*/
99

1010
/**
1111
* @api {get} /log/:id Get

0 commit comments

Comments
 (0)