ChiliProject is not maintained anymore. Please be advised that there will be no more updates.
We do not recommend that you setup new ChiliProject instances and we urge all existing users to migrate their data to a maintained system, e.g. Redmine. We will provide a migration script later. In the meantime, you can use the instructions by Christian Daehn.
default bundle install installs old pg version (Feature #915)
Description
The following command installs an old pg version:
bundle install --without=test sqlite mysql2 mysql openid rmagick
This is due to Gemfile having "~> 0.9.0" (i.e. 0.9.x).
pg is up to 0.13.x now.
I've run the cp tests on 0.13.1 with no failures.
Please consider updating the pg version.
Felix noted the reason 0.9.0 was picked was because it was the last version to support ruby 1.8.6.
diff --git a/Gemfile b/Gemfile index 6ec56e2..0ef4d19 100644 --- a/Gemfile +++ b/Gemfile @@ -57,7 +57,7 @@ platforms :mri, :mingw do end group :postgres do - gem "pg", "~> 0.9.0" + gem "pg" # gem "postgres-pr" end end
Associated revisions
- Japanese (Satoru Kurashiki)
- Simplified Chinese (chaoqun zou)
- Danish (kim madsen)
- Norwegian (Kai Olav Fredriksen)
- Traditional Chinese (shortie lo)
- German (Sven Schuchmann)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1300 e93f8b46-1217-0410-a6f0-8f06a7374b81
Don't require a specific pg gem version #915
pg was locked to ~> 0.9.0 as it was the last version to support ruby 1.8.6, we don't support it officially anymore, thus we can remove the version requirement.
Contributed by Dies Koper.
History
Updated by Felix Schäfer at 2012-03-01 11:57 am
Looks good to me and some quick testing didn't show anything askew. Committed in 900eda7, I'll close here when the CI has churned through it once. Thanks!
Updated by Felix Schäfer at 2012-03-01 09:46 pm
The CI is good.
- Status changed from Ready for review to Closed