-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore changes needed to run the schema plugin in the dummy app
Cherry picked from commit b15f5f5: - Remove the .ruby-version restriction - Load the manageiq-schema Gemfile instead of the dummy app Gemfile - Delete the generated database.yml in favor of database.tmpl.yml - Ignore the db/schema.rb that is generated - Restore the v2_key Cherry picked from commit 8529571: - Drop config.assets since sprockets-rails isn't in rail 7 Cherry picked from commit c716815: - Temporary override of the belongs_to_required_by_default setting Cherry picked from commit 6b7d6fd: - Update the dummy app to use_yaml_unsafe_load in rails 6.0.5.1
- Loading branch information
Showing
11 changed files
with
39 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
:EZCRYPTO KEY FILE: KEEP THIS SECURE ! | ||
:created: 2014-02-28 09:59:47 -0500 | ||
:algorithm: aes-256-cbc | ||
:key: uXfIgSAUq5Oz8goc/zI8HOOo0SI++Sd9mfpgBanYIM4= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) | ||
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../../Gemfile", __dir__) | ||
|
||
require "bundler/setup" # Set up gems listed in the Gemfile. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
base: &base | ||
adapter: postgresql | ||
encoding: utf8 | ||
username: root | ||
password: smartvm | ||
pool: 5 | ||
wait_timeout: 5 | ||
min_messages: warning | ||
|
||
development: | ||
<<: *base | ||
database: dummy_development | ||
min_messages: notice | ||
|
||
production: | ||
<<: *base | ||
database: dummy_production | ||
|
||
test: &test | ||
<<: *base | ||
pool: 3 | ||
database: dummy_test |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.