diff options
author | Louise Crow <louise.crow@gmail.com> | 2013-01-15 10:42:15 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-01-15 10:42:15 +0000 |
commit | 590e5b0a1512097755bea0b60b1d7f6e8f7d11d4 (patch) | |
tree | 2f94e97c95d347e7ca2ba8e9d2c5f8929fc0dd98 | |
parent | dad76e0ac7cfd92ffb3bf54a1f0c4c7982b7552e (diff) |
Update Gemfile to use a security patched copy of rails from the mySociety git repo
-rw-r--r-- | Gemfile | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -7,7 +7,15 @@ if File.exist? "/etc/debian_version" and File.open("/etc/debian_version").read.s end source :rubygems -gem 'rails', '2.3.15' +# A fork of rails that is kept up to date with security patches +git "git://github.com/mysociety/rails.git", :branch => "2-3-stable" do + gem 'rails' + gem 'actionmailer' + gem 'actionpack' + gem 'activerecord' + gem 'activeresource' + gem 'activesupport' +end gem 'pg' gem 'fast_gettext', '>= 0.6.0' |