From 6c352532668c16e7cd219a90ef2aa512f162887c Mon Sep 17 00:00:00 2001 From: John Bintz Date: Wed, 6 Jun 2012 11:25:15 -0400 Subject: [PATCH] update version and readme --- README.md | 9 +++++++++ lib/penchant/version.rb | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 50b6cef..4917e2a 100644 --- a/README.md +++ b/README.md @@ -42,10 +42,19 @@ no_deployment do env :remote do gems dev_gems, :git => 'git://github.com/johnbintz/%s.git' end + + os :darwin do + gem 'rb-fsevent' + end + + os :linux do + gems 'rb-inotify', 'ffi' + end end end ``` + Use `script/gemfile local` to get at the local ones, and `script/gemfile remote` to get at the remote ones. It then runs `bundle install`. diff --git a/lib/penchant/version.rb b/lib/penchant/version.rb index 9fcf621..fee3a95 100644 --- a/lib/penchant/version.rb +++ b/lib/penchant/version.rb @@ -1,3 +1,3 @@ module Penchant - VERSION = "0.2.1" + VERSION = "0.2.2" end