summaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2013-05-09 13:03:28 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2013-05-09 13:03:28 +0000
commit2b022ac097fa08410d21c50914f8ae82543865c5 (patch)
treeefb105ea204d7239e1d2dc6a42286667f99e6f7e /Gemfile
parent00f15828a2b8935aaa8d8d8606116e75846f9794 (diff)
downloadredmine-2b022ac097fa08410d21c50914f8ae82543865c5.tar.gz
redmine-2b022ac097fa08410d21c50914f8ae82543865c5.zip
install capybara on only Ruby 1.9.3 or higher (#12822)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11806 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 7ce99f851..a94a97b26 100644
--- a/Gemfile
+++ b/Gemfile
@@ -79,7 +79,7 @@ end
group :test do
gem "shoulda", "~> 3.3.2"
gem "mocha", "~> 0.13.3"
- platforms :mri_19, :mingw_19 do
+ if RUBY_VERSION >= '1.9.3'
gem "capybara", "~> 2.1.0"
gem "selenium-webdriver"
end