le1t0-deprec 2.1.6.009 → 2.1.6.010
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +4 -0
- data/lib/deprec/recipes/rails.rb +1 -1
- metadata +2 -2
data/CHANGELOG
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# deprec changelog
|
2
2
|
|
3
|
+
= 2.1.6.010 (Jun 10, 2010)
|
4
|
+
|
5
|
+
* Added fixed version for sqlite3-ruby gem in rails recipe, since 1.3.0 cannot compile on Ubuntu Hardy
|
6
|
+
|
3
7
|
= 2.1.6.009 (Jun 10, 2010)
|
4
8
|
|
5
9
|
* removed default profiles since they cause problems when using capistrano variables from recipes
|
data/lib/deprec/recipes/rails.rb
CHANGED
@@ -87,7 +87,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
87
87
|
|
88
88
|
# install some required ruby gems
|
89
89
|
task :install_gems do
|
90
|
-
gem2.install 'sqlite3-ruby'
|
90
|
+
gem2.install 'sqlite3-ruby', '1.2.5' # 1.3.0 fails to build on Ubuntu Hardy - le1t0
|
91
91
|
gem2.install 'mysql'
|
92
92
|
gem2.install 'ruby-pg'
|
93
93
|
gem2.install 'rails'
|