Skip to content

Commit

Permalink
Add Clojure parser.
Browse files Browse the repository at this point in the history
  • Loading branch information
rottmann committed Dec 19, 2014
1 parent b17d63e commit c2932ee
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# apiDoc Changelog

#### 0.10.2

* Parser
* Add Clojure parser.


#### 0.10.1

* Bugfix: Path to apidoc-core.


#### 0.10.0

Expand Down
3 changes: 3 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Thanks to all people that help to make apiDoc better!

* [Danny Olson](https://github.com/dbolson)
* Add Clojure parser.

* [Eugene Jo](https://github.com/iameugenejo)
* Allowed options.packageInfo to overwrite default packageInfo [#177] (https://github.com/apidoc/apidoc/pull/171))

Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ More examples and best practice hints: [EXAMPLES.md](https://github.com/apidoc/a
*/
```

* **Clojure**:

```clojure
;;;;
;; This is a comment.
;;;;
```

* **CoffeeScript**:

```coffeescript
Expand Down
2 changes: 1 addition & 1 deletion bin/apidoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var nomnom = require('nomnom');
var apidoc = require('../lib/index');

var argv = nomnom
.option('file-filters', { abbr: 'f', 'default': '.*\\.(coffee|cs|dart|erl|go|java|js|php?|py|rb|ts|pm)$',
.option('file-filters', { abbr: 'f', 'default': '.*\\.(clj|coffee|cs|dart|erl|go|java|js|php?|py|rb|ts|pm)$',
help: 'RegEx-Filter to select files that should be parsed (multiple -f can be used).' })

.option('exclude-filters', { abbr: 'e', 'default': '',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"scripts": {
"test": "npm run jshint && mocha test/",
"jshint": "jshint lib/ test/ --exclude test/fixtures/"
"jshint": "jshint lib/ test/"
},
"keywords": [
"api",
Expand Down

0 comments on commit c2932ee

Please sign in to comment.