diff options
Diffstat (limited to 'rvh')
| -rw-r--r-- | rvh/Gemfile | 3 | ||||
| -rw-r--r-- | rvh/Gemfile.lock | 12 | ||||
| -rw-r--r-- | rvh/config/environments/development.rb | 4 |
3 files changed, 15 insertions, 4 deletions
diff --git a/rvh/Gemfile b/rvh/Gemfile index 6c4b309..5f29f3a 100644 --- a/rvh/Gemfile +++ b/rvh/Gemfile @@ -1,4 +1,5 @@ source 'https://rubygems.org' -gem 'rails', '~> 6.0.2', '>= 6.0.2.1' +gem 'rails', '~> 6.0' +gem 'rails-erd', '~> 1.6' gem 'sqlite3', '~> 1.4' diff --git a/rvh/Gemfile.lock b/rvh/Gemfile.lock index 39a153b..ffe409e 100644 --- a/rvh/Gemfile.lock +++ b/rvh/Gemfile.lock @@ -57,6 +57,7 @@ GEM tzinfo (~> 1.1) zeitwerk (~> 2.2) builder (3.2.4) + choice (0.2.0) concurrent-ruby (1.1.6) crass (1.0.6) erubi (1.9.0) @@ -100,6 +101,11 @@ GEM rails-dom-testing (2.0.3) activesupport (>= 4.2.0) nokogiri (>= 1.6) + rails-erd (1.6.0) + activerecord (>= 4.2) + activesupport (>= 4.2) + choice (~> 0.2.0) + ruby-graphviz (~> 1.2) rails-html-sanitizer (1.3.0) loofah (~> 2.3) railties (6.0.2.1) @@ -109,6 +115,9 @@ GEM rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) rake (13.0.1) + rexml (3.2.4) + ruby-graphviz (1.2.5) + rexml sprockets (4.0.0) concurrent-ruby (~> 1.0) rack (> 1, < 3) @@ -130,7 +139,8 @@ PLATFORMS ruby DEPENDENCIES - rails (~> 6.0.2, >= 6.0.2.1) + rails (~> 6.0) + rails-erd (~> 1.6) sqlite3 (~> 1.4) BUNDLED WITH diff --git a/rvh/config/environments/development.rb b/rvh/config/environments/development.rb index 995d562..9f9692e 100644 --- a/rvh/config/environments/development.rb +++ b/rvh/config/environments/development.rb @@ -1,6 +1,6 @@ Rails.application.configure do - config.cache_classes = false - config.eager_load = false + config.cache_classes = true + config.eager_load = true config.consider_all_requests_local = true config.active_support.deprecation = :log config.active_record.migration_error = :page_load |
