OSDN Git Service

rakeが動作するように修正
authorYOSHIDA Hiroki <hyoshida@appirits.com>
Fri, 31 May 2013 06:01:04 +0000 (15:01 +0900)
committerYOSHIDA Hiroki <hyoshida@appirits.com>
Fri, 31 May 2013 10:15:39 +0000 (19:15 +0900)
Gemfile
Gemfile.lock
Rakefile

diff --git a/Gemfile b/Gemfile
index 9e7cad9..85bd9a6 100644 (file)
--- a/Gemfile
+++ b/Gemfile
@@ -2,6 +2,8 @@ source 'https://rubygems.org'
 source 'http://gems.github.com'
 
 gem 'rails', '2.3.17'
+gem 'rake', '~> 10.0'
+gem 'test-unit', '1.2.3'
 gem 'pg'
 gem 'rmagick', '2.13.2'
 gem 'gettext', '2.1.0'
index 9026b1d..06273ed 100644 (file)
@@ -66,6 +66,8 @@ GEM
       rack (>= 1.0.0)
       rspec (>= 1.2.9)
     slop (3.4.5)
+    test-unit (1.2.3)
+      hoe (>= 1.5.1)
     thoughtbot-factory_girl (1.2.2)
     webmock (1.3.4)
       addressable (>= 2.1.1)
@@ -93,10 +95,12 @@ DEPENDENCIES
   pry
   pry-doc
   rails (= 2.3.17)
+  rake (~> 10.0)
   resource_controller
   rmagick (= 2.13.2)
   rspec (= 1.2.9)
   rspec-rails (= 1.2.9)
+  test-unit (= 1.2.3)
   thoughtbot-factory_girl (= 1.2.2)
   webmock (= 1.3.4)
   will_paginate (~> 2.3)
index 3bb0e85..4602927 100644 (file)
--- a/Rakefile
+++ b/Rakefile
@@ -5,6 +5,6 @@ require(File.join(File.dirname(__FILE__), 'config', 'boot'))
 
 require 'rake'
 require 'rake/testtask'
-require 'rake/rdoctask'
+require 'rdoc/task'
 
 require 'tasks/rails'