Flowdock
method

gem_for_database

Importance_0
v4.2.9 - Show latest stable - 0 notes - Class: AppBase
gem_for_database() protected

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/generators/app_base.rb, line 224
      def gem_for_database
        # %w( mysql oracle postgresql sqlite3 frontbase ibm_db sqlserver jdbcmysql jdbcsqlite3 jdbcpostgresql )
        case options[:database]
        when "oracle"         then ["ruby-oci8", nil]
        when "postgresql"     then ["pg", ["~> 0.15"]]
        when "frontbase"      then ["ruby-frontbase", nil]
        when "mysql"          then ["mysql2", [">= 0.3.13", "< 0.5"]]
        when "sqlserver"      then ["activerecord-sqlserver-adapter", nil]
        when "jdbcmysql"      then ["activerecord-jdbcmysql-adapter", nil]
        when "jdbcsqlite3"    then ["activerecord-jdbcsqlite3-adapter", nil]
        when "jdbcpostgresql" then ["activerecord-jdbcpostgresql-adapter", nil]
        when "jdbc"           then ["activerecord-jdbc-adapter", nil]
        else [options[:database], nil]
        end
      end
Register or log in to add new notes.