diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-07-20 10:08:17 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-07-20 10:08:17 -0700 |
commit | 79cb39aad39001c4f995217b168e9ea74ba52ec3 (patch) | |
tree | 4ed765111e926299c2fcedc6a05b3571defa6c7d | |
parent | 9fe94dd0c16facf2c9cfac9ae1166050b6f41cee (diff) | |
download | rails-79cb39aad39001c4f995217b168e9ea74ba52ec3.tar.gz rails-79cb39aad39001c4f995217b168e9ea74ba52ec3.tar.bz2 rails-79cb39aad39001c4f995217b168e9ea74ba52ec3.zip |
using vendor/rails if the environment variable is not set
-rw-r--r-- | Gemfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,9 +1,9 @@ source :rubygems -gem "activerecord", :path => ENV["RAILS_SOURCE"] +gem "activerecord", :path => ENV["RAILS_SOURCE"] || 'vendor/rails' gem "diff-lcs" gem "mysql" gem "pg" gem "rake" gem "rspec" -gem "sqlite3-ruby"
\ No newline at end of file +gem "sqlite3-ruby" |