From 1ebe02c48638619011c537a374e902543feb413e Mon Sep 17 00:00:00 2001 From: Ben Sheldon Date: Tue, 27 Oct 2020 16:46:26 -0700 Subject: [PATCH] Ensure Rails is a development dependency --- Gemfile.lock | 59 +++++++++++++++++++++++++++++++ good_job.gemspec | 1 + spec/test_app/config/database.yml | 2 -- 3 files changed, 60 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index a418e0fca..a430e4b92 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -13,6 +13,23 @@ PATH GEM remote: https://rubygems.org/ specs: + actioncable (6.0.3.4) + actionpack (= 6.0.3.4) + nio4r (~> 2.0) + websocket-driver (>= 0.6.1) + actionmailbox (6.0.3.4) + actionpack (= 6.0.3.4) + activejob (= 6.0.3.4) + activerecord (= 6.0.3.4) + activestorage (= 6.0.3.4) + activesupport (= 6.0.3.4) + mail (>= 2.7.1) + actionmailer (6.0.3.4) + actionpack (= 6.0.3.4) + actionview (= 6.0.3.4) + activejob (= 6.0.3.4) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 2.0) actionpack (6.0.3.4) actionview (= 6.0.3.4) activesupport (= 6.0.3.4) @@ -20,6 +37,12 @@ GEM rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.2.0) + actiontext (6.0.3.4) + actionpack (= 6.0.3.4) + activerecord (= 6.0.3.4) + activestorage (= 6.0.3.4) + activesupport (= 6.0.3.4) + nokogiri (>= 1.8.5) actionview (6.0.3.4) activesupport (= 6.0.3.4) builder (~> 3.1) @@ -34,6 +57,11 @@ GEM activerecord (6.0.3.4) activemodel (= 6.0.3.4) activesupport (= 6.0.3.4) + activestorage (6.0.3.4) + actionpack (= 6.0.3.4) + activejob (= 6.0.3.4) + activerecord (= 6.0.3.4) + marcel (~> 0.3.1) activesupport (6.0.3.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 0.7, < 2) @@ -109,6 +137,10 @@ GEM loofah (2.7.0) crass (~> 1.0.2) nokogiri (>= 1.5.9) + mail (2.7.1) + mini_mime (>= 0.1.1) + marcel (0.3.3) + mimemagic (~> 0.3.2) mdl (0.11.0) kramdown (~> 2.3) kramdown-parser-gfm (~> 1.1) @@ -116,6 +148,7 @@ GEM mixlib-config (>= 2.2.1, < 4) mixlib-shellout method_source (1.0.0) + mimemagic (0.3.5) mini_mime (1.0.2) mini_portile2 (2.4.0) minitest (5.14.2) @@ -149,6 +182,21 @@ GEM rack (2.2.3) rack-test (1.1.0) rack (>= 1.0, < 3) + rails (6.0.3.4) + actioncable (= 6.0.3.4) + actionmailbox (= 6.0.3.4) + actionmailer (= 6.0.3.4) + actionpack (= 6.0.3.4) + actiontext (= 6.0.3.4) + actionview (= 6.0.3.4) + activejob (= 6.0.3.4) + activemodel (= 6.0.3.4) + activerecord (= 6.0.3.4) + activestorage (= 6.0.3.4) + activesupport (= 6.0.3.4) + bundler (>= 1.3.0) + railties (= 6.0.3.4) + sprockets-rails (>= 2.0.0) rails-dom-testing (2.0.3) activesupport (>= 4.2.0) nokogiri (>= 1.6) @@ -218,12 +266,22 @@ GEM rubyzip (>= 1.2.2) sigdump (0.2.4) smart_properties (1.15.0) + sprockets (4.0.2) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.2.2) + actionpack (>= 4.0) + activesupport (>= 4.0) + sprockets (>= 3.0.0) thor (1.0.1) thread_safe (0.3.6) tomlrb (1.3.0) tzinfo (1.2.7) thread_safe (~> 0.1) unicode-display_width (1.7.0) + websocket-driver (0.7.3) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.5) xpath (3.2.0) nokogiri (~> 1.8) yard (0.9.25) @@ -249,6 +307,7 @@ DEPENDENCIES mdl pry-rails puma + rails rbtrace rspec-rails rubocop diff --git a/good_job.gemspec b/good_job.gemspec index 93bd05523..5f7ac13ac 100644 --- a/good_job.gemspec +++ b/good_job.gemspec @@ -68,6 +68,7 @@ Gem::Specification.new do |spec| spec.add_development_dependency "mdl" spec.add_development_dependency "pry-rails" spec.add_development_dependency "puma" + spec.add_development_dependency "rails" spec.add_development_dependency "rbtrace" spec.add_development_dependency "rspec-rails" spec.add_development_dependency "rubocop" diff --git a/spec/test_app/config/database.yml b/spec/test_app/config/database.yml index 5f44946ee..dfc7831e8 100644 --- a/spec/test_app/config/database.yml +++ b/spec/test_app/config/database.yml @@ -81,5 +81,3 @@ test: production: <<: *default database: test_app_production - username: test_app - password: <%= ENV['DUMMY_DATABASE_PASSWORD'] %>