From 3d794edc5ceec565e8d26909e1393e72539e4498 Mon Sep 17 00:00:00 2001 From: Moritz Peters Date: Fri, 5 Sep 2014 22:05:04 +0000 Subject: [PATCH] Add travis-ci build image to README.md Update node engine dependency to v0.10 or higher --- README.md | 8 +++++--- package.json | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b698a99..be85454 100644 --- a/README.md +++ b/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. @@ -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', { @@ -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 diff --git a/package.json b/package.json index a5855c0..0b11169 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "nohm", "version": "0.9.6", "engines": { - "node" : ">=0.6" + "node" : ">=0.10" }, "author": "Moritz Peters", "repository" : {