Skip to content

Commit

Permalink
Add travis-ci build image to README.md
Browse files Browse the repository at this point in the history
Update node engine dependency to v0.10 or higher
  • Loading branch information
Moritz Peters committed Sep 5, 2014
1 parent 2b0128f commit 3d794ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions README.md
@@ -1,5 +1,7 @@
# Nohm

[![Build Status](https://travis-ci.org/maritz/nohm.svg?branch=master)](https://travis-ci.org/maritz/nohm)

## Description

Nohm is an object relational mapper (ORM) written for node.js and redis.
Expand All @@ -22,7 +24,7 @@ http://maritz.github.com/nohm/
~~~~ javascript
var nohm = require('nohm').Nohm;
var redis = require('redis').createClient();

nohm.setClient(redis);

nohm.model('User', {
Expand Down Expand Up @@ -119,8 +121,8 @@ Then run

node test/tests.js

*Careful*: This requires a running redis server. (you can configure host/port with the command line arguments --redis-host 1.1.1.1 --redis-port 1234)
The tests also create a lot of keys in your database that look something like this:
*Careful*: This requires a running redis server. (you can configure host/port with the command line arguments --redis-host 1.1.1.1 --redis-port 1234)
The tests also create a lot of keys in your database that look something like this:

nohmtests:something:something

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "nohm",
"version": "0.9.6",
"engines": {
"node" : ">=0.6"
"node" : ">=0.10"
},
"author": "Moritz Peters",
"repository" : {
Expand Down

0 comments on commit 3d794ed

Please sign in to comment.