From 91d4c10ada38688609ff51a10f32097130d2a258 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Wed, 30 Mar 2011 09:33:27 -0400 Subject: [PATCH] final tweak, yay 0.0.1 --- README.md | 6 +++++- lib/rspec-quickfix-formatter.rb | 4 +++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ea5456f..22f32ba 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,13 @@ Install the gem: rake install +Or use Bundler: + + gem "rspec-quickfix-formatter" + In .rspec: - --format RSpec::Core::Formatters::QuickFixFormatter + --format RSpec::QuickFixFormatter --out .quickfix-out In Vim: diff --git a/lib/rspec-quickfix-formatter.rb b/lib/rspec-quickfix-formatter.rb index fc7bbd0..673512a 100644 --- a/lib/rspec-quickfix-formatter.rb +++ b/lib/rspec-quickfix-formatter.rb @@ -1 +1,3 @@ -require 'rspec/quickfix-formatter' +module RSpec + require 'rspec/quickfix-formatter' +end