summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi Nakamura <nahi@ruby-lang.org>2012-01-06 14:01:17 +0900
committerHiroshi Nakamura <nahi@ruby-lang.org>2012-01-06 14:01:17 +0900
commitb55b5cc8cb6c884a20f14d52bfd751dcaecb72af (patch)
tree37cc1721ee37676fbcc4eb56bce5bd7c3763bef5
parent0b69a8d9efec731649f93aeee9bea4b6b348868b (diff)
downloadjson-b55b5cc8cb6c884a20f14d52bfd751dcaecb72af.tar.gz
Add test-unit as test group dependency
When we run 'rake test' through bundler like 'bundle exec rake test', we need test-unit gem installed. It's because testrb in bundler gem activates 'test-unit' gem in contrast stock testrb in Ruby dist doesn't. I'm suspecting it's a bug of bundler but it might be good to add 'test-unit' to Gemfile for a workaround because Gemfile is for bundler.
-rw-r--r--Gemfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index 0beb1f0..e289c37 100644
--- a/Gemfile
+++ b/Gemfile
@@ -9,3 +9,7 @@ gemspec :name => 'json-java'
group :development do
gem 'simplecov', :platform => :mri_19
end
+
+group :test do
+ gem 'test-unit', :platform => :mri_19
+end