From a9373402ef0c6d99d13071912b9786100b9e1090 Mon Sep 17 00:00:00 2001 From: David McCullars Date: Fri, 1 Jul 2011 17:51:33 -0400 Subject: [PATCH] Fix Rakefile --- Gemfile | 3 +++ Gemfile.lock | 6 ++++++ Rakefile | 3 ++- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index e45e65f..679a082 100644 --- a/Gemfile +++ b/Gemfile @@ -1,2 +1,5 @@ source :rubygems gemspec + +gem "rspec", '~> 1.3', :require => false +gem 'simplecov', '>= 0.4.0', :require => false diff --git a/Gemfile.lock b/Gemfile.lock index 456d81c..4833abf 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -6,9 +6,15 @@ PATH GEM remote: http://rubygems.org/ specs: + rspec (1.3.1) + simplecov (0.4.2) + simplecov-html (~> 0.4.4) + simplecov-html (0.4.5) PLATFORMS ruby DEPENDENCIES dir_checksum! + rspec (~> 1.3) + simplecov (>= 0.4.0) diff --git a/Rakefile b/Rakefile index c702cfc..14cfe0b 100644 --- a/Rakefile +++ b/Rakefile @@ -1 +1,2 @@ -require 'bundler/gem_tasks' +require 'bundler' +Bundler::GemHelper.install_tasks