diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-10-19 19:00:17 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-10-19 19:00:17 -0700 |
commit | c9cd10c4fa77aedb9116105d4d3c4d5684af4e1c (patch) | |
tree | cc86b0ad2fce8f1e46062f519408fc03f39eefbe /actionpack | |
parent | 418ce487c4a41df2c3a3c1485107f32eb94fa493 (diff) | |
download | rails-c9cd10c4fa77aedb9116105d4d3c4d5684af4e1c.tar.gz rails-c9cd10c4fa77aedb9116105d4d3c4d5684af4e1c.tar.bz2 rails-c9cd10c4fa77aedb9116105d4d3c4d5684af4e1c.zip |
Bundle arel for AR integration tests
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/Gemfile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/actionpack/Gemfile b/actionpack/Gemfile index c236169b20..b3ffeaecb6 100644 --- a/actionpack/Gemfile +++ b/actionpack/Gemfile @@ -6,13 +6,12 @@ gem "rack", "1.0.1", :git => "git://github.com/rails/rack.git", :branch => "rack gem "rack-test", "~> 0.5.0" gem "activesupport", "3.0.pre", :vendored_at => rails_root.join("activesupport") gem "activemodel", "3.0.pre", :vendored_at => rails_root.join("activemodel") +gem "arel", :git => "git://github.com/rails/arel.git" gem "activerecord", "3.0.pre", :vendored_at => rails_root.join("activerecord") gem "erubis", "~> 2.6.0" -only :test do - gem "mocha" - gem "sqlite3-ruby" - gem "RedCloth" -end +gem "mocha" +gem "sqlite3-ruby" +gem "RedCloth" disable_system_gems |