Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Sep 24, 2010
0 parents commit 1359902
Show file tree
Hide file tree
Showing 8 changed files with 111 additions and 0 deletions.
Empty file added History.md
Empty file.
6 changes: 6 additions & 0 deletions Makefile
@@ -0,0 +1,6 @@

test:
@./support/expresso/bin/expresso \
-I lib

.PHONY: test
27 changes: 27 additions & 0 deletions Readme.md
@@ -0,0 +1,27 @@

# Lingo

## License

(The MIT License)

Copyright (c) 2009-2010 TJ Holowaychuk <tj@vision-media.ca>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2 changes: 2 additions & 0 deletions index.js
@@ -0,0 +1,2 @@

module.exports = require('./lib');
22 changes: 22 additions & 0 deletions lib/lingo.js
@@ -0,0 +1,22 @@

/*!
* Lingo
* Copyright(c) 2010 TJ Holowaychuk <tj@vision-media.ca>
* MIT Licensed
*/

/**
* Library version.
*
* @type String
*/

exports.version = '0.0.1'

/**
* Uncountable words.
*
* @type Array
*/

exports.uncountable = require('./uncountable');
34 changes: 34 additions & 0 deletions lib/uncountables.js
@@ -0,0 +1,34 @@

/*!
* Lingo - uncountables
* Copyright(c) 2010 TJ Holowaychuk <tj@vision-media.ca>
* MIT Licensed
*/

module.exports = [
'advice'
, 'enegery'
, 'excretion'
, 'digestion'
, 'cooperation'
, 'health'
, 'justice'
, 'labour'
, 'machinery'
, 'equipment'
, 'information'
, 'pollution'
, 'sewage'
, 'paper'
, 'money'
, 'species'
, 'series'
, 'rain'
, 'rice'
, 'fish'
, 'sheep'
, 'moose'
, 'deer'
, 'bison'
, 'news'
];
8 changes: 8 additions & 0 deletions package.json
@@ -0,0 +1,8 @@
{ "name": "Lingo"
, "description": "linguistics module sporting inflection and more"
, "version": "0.0.1"
, "author": "TJ Holowaychuk <tj@vision-media.ca>"
, "keywords": ["language", "linguistics", "inflection"]
, "main": "./index.js"
, "engines": { "node": ">= 0.2.0" }
}
12 changes: 12 additions & 0 deletions test/lingo.test.js
@@ -0,0 +1,12 @@

/**
* Module dependencies.
*/

var chrono = require('chrono');

module.exports = {
'test .version': function(assert){
assert.match(chrono.version, /^\d+\.\d+\.\d+$/);
}
}

0 comments on commit 1359902

Please sign in to comment.