aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/app_base.rb
diff options
context:
space:
mode:
authorVishnu Atrai <me@vishnuatrai.com>2011-04-26 00:54:02 +0530
committerVishnu Atrai <me@vishnuatrai.com>2011-04-26 01:00:37 +0530
commit16d3266144caeaca6385ed77ecd7d4e620160dec (patch)
tree7294854693a7a27455416cf437708f48b77f2072 /railties/lib/rails/generators/app_base.rb
parent12427c8dea1e817d7badc06f1f21af989c0f56ea (diff)
downloadrails-16d3266144caeaca6385ed77ecd7d4e620160dec.tar.gz
rails-16d3266144caeaca6385ed77ecd7d4e620160dec.tar.bz2
rails-16d3266144caeaca6385ed77ecd7d4e620160dec.zip
jdbcpostgresql support added into template.
Diffstat (limited to 'railties/lib/rails/generators/app_base.rb')
-rw-r--r--railties/lib/rails/generators/app_base.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/railties/lib/rails/generators/app_base.rb b/railties/lib/rails/generators/app_base.rb
index 46a2a3f154..3cc3762cee 100644
--- a/railties/lib/rails/generators/app_base.rb
+++ b/railties/lib/rails/generators/app_base.rb
@@ -10,7 +10,7 @@ module Rails
module Generators
class AppBase < Base
DATABASES = %w( mysql oracle postgresql sqlite3 frontbase ibm_db )
- JDBC_DATABASES = %w( jdbcmysql jdbcsqlite3 )
+ JDBC_DATABASES = %w( jdbcmysql jdbcsqlite3 jdbcpostgresql )
DATABASES.concat(JDBC_DATABASES)
JAVASCRIPTS = %w( jquery prototype )
@@ -158,7 +158,7 @@ module Rails
end
def gem_for_database
- # %w( mysql oracle postgresql sqlite3 frontbase ibm_db jdbcmysql jdbcsqlite3)
+ # %w( mysql oracle postgresql sqlite3 frontbase ibm_db jdbcmysql jdbcsqlite3 jdbcpostgresql )
case options[:database]
when "oracle" then "ruby-oci8"
when "postgresql" then "pg"
@@ -166,6 +166,7 @@ module Rails
when "mysql" then "mysql2"
when "jdbcmysql" then "activerecord-jdbcmysql-adapter"
when "jdbcsqlite3" then "activerecord-jdbcsqlite3-adapter"
+ when "jdbcpostgresql" then "activerecord-jdbcpostgresql-adapter"
else options[:database]
end
end