lib/generators/archangel/dummy/templates/config/database.yml in archangel-0.0.5 vs lib/generators/archangel/dummy/templates/config/database.yml in archangel-0.0.6
- old
+ new
@@ -8,14 +8,10 @@
database: archangel_<%= options[:lib_name] %>_development
test:
<<: *default
database: archangel_<%= options[:lib_name] %>_test
-
-production:
- <<: *default
- database: archangel_<%= options[:lib_name] %>_production
<%- when "postgres" -%>
default: &default
adapter: postgresql
username: postgres
@@ -24,14 +20,10 @@
database: archangel_<%= options[:lib_name] %>_development
test:
<<: *default
database: archangel_<%= options[:lib_name] %>_test
-
-production:
- <<: *default
- database: archangel_<%= options[:lib_name] %>_production
<%- else -%>
default: &default
adapter: sqlite3
development:
@@ -39,10 +31,6 @@
database: db/archangel_<%= options[:lib_name] %>_development.sqlite3
test:
<<: *default
database: db/archangel_<%= options[:lib_name] %>_test.sqlite3
-
-production:
- <<: *default
- database: db/archangel_<%= options[:lib_name] %>_production.sqlite3
<%- end -%>