diff options
author | wycats <wycats@gmail.com> | 2010-03-22 20:32:31 -0700 |
---|---|---|
committer | wycats <wycats@gmail.com> | 2010-03-22 20:32:31 -0700 |
commit | b144b56d8288246f0de7437d10361a0f1ed2bd83 (patch) | |
tree | fadb664760df32e888557d051449e93924b910e3 /Gemfile | |
parent | 15c31c7639b4329eba341bbe894abc9b79edc5c3 (diff) | |
download | rails-b144b56d8288246f0de7437d10361a0f1ed2bd83.tar.gz rails-b144b56d8288246f0de7437d10361a0f1ed2bd83.tar.bz2 rails-b144b56d8288246f0de7437d10361a0f1ed2bd83.zip |
Put MRI-specific dependencies in an MRI group
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -7,8 +7,11 @@ gem "rails", "3.0.0.beta1" gem "rake", ">= 0.8.7" gem "mocha", ">= 0.9.8" -if RUBY_VERSION < '1.9' - gem "ruby-debug", ">= 0.10.3" +group :mri do + gem "system_timer" + if RUBY_VERSION < '1.9' + gem "ruby-debug", ">= 0.10.3" + end end # AR @@ -19,8 +22,6 @@ group :db do gem "mysql", ">= 2.8.1" end -gem "system_timer" - # AP gem "rack-test", "0.5.3", :require => 'rack/test' gem "RedCloth", ">= 4.2.2" |