This repository has been archived by the owner on Jul 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
11 changed files
with
42 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,32 @@ | ||
# Fantasia | ||
# Fantasy Frees | ||
|
||
Free yourself in the land of fantasies. | ||
![](https://raw.github.com/puffnfresh/fantasy-land/master/logo.png) | ||
|
||
## General | ||
|
||
![](http://3.bp.blogspot.com/-jvZKYuaAR0Y/UziH2UehOyI/AAAAAAAADAQ/K98vi-MnSxM/s1600/Mickey+Sorcerer's+Apprentice+.gif) | ||
Free yourself in the land of fantasies. | ||
|
||
### Interpreters | ||
|
||
See [examples](examples) for now. | ||
See [examples](examples) for now. | ||
|
||
## Testing | ||
|
||
### Library | ||
|
||
Fantasy Options uses [nodeunit](https://github.com/caolan/nodeunit) for | ||
all the tests and because of this there is currently an existing | ||
[adapter](test/lib/test.js) in the library to help with integration | ||
between nodeunit and Fantasy Check. | ||
|
||
### Coverage | ||
|
||
Currently Fantasy Check is using [Istanbul](https://github.com/gotwarlost/istanbul) | ||
for code coverage analysis; you can run the coverage via the following | ||
command: | ||
|
||
_This assumes that you have istanbul installed correctly._ | ||
|
||
``` | ||
istanbul cover nodeunit -- test/*.js | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"name": "fantasia", | ||
"name": "fantasy-frees", | ||
"description": "Free yourself in the land of fantasies.", | ||
"author": "Simon Richardson <[email protected]> (https://github.com/SimonRichardson)", | ||
"homepage": "https://github.com/SimonRichardson/fantasia", | ||
"homepage": "https://github.com/SimonRichardson/fantasy-frees", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/SimonRichardson/fantasia.git" | ||
"url": "git+https://github.com/SimonRichardson/fantasy-frees.git" | ||
}, | ||
"dependencies": { | ||
"fantasy-combinators": "^0.x.x", | ||
|
@@ -34,13 +34,13 @@ | |
"test": "grunt" | ||
}, | ||
"files": [ | ||
"fantasia.js", | ||
"fantasy-frees.js", | ||
"src/*.js" | ||
], | ||
"main": "src/server.js", | ||
"version": "0.0.1", | ||
"main": "fantasy-frees.js", | ||
"version": "0.1.0", | ||
"bugs": { | ||
"url": "https://github.com/SimonRichardson/fantasia/issues" | ||
"url": "https://github.com/SimonRichardson/fantasy-frees/issues" | ||
}, | ||
"directories": { | ||
"example": "examples", | ||
|