diff --git a/Gemfile b/Gemfile index 8a902e5..91d8b2d 100644 --- a/Gemfile +++ b/Gemfile @@ -4,7 +4,9 @@ source "https://rubygems.org" git_source(:github) { |repo_name| "https://github.com/#{repo_name}" } -gem "require_all", "~> 3.0.0" +gem "activesupport", "~> 7.0" +gem "json", "~> 2.6" +gem "require_all", "~> 3.0.0" group :development do gem "dotenv", "~> 2.7.6" diff --git a/Gemfile.lock b/Gemfile.lock index 48e1546..61e9dec 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,12 +1,11 @@ GEM remote: https://rubygems.org/ specs: - activesupport (6.1.4.1) + activesupport (7.0.3) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) - zeitwerk (~> 2.3) ast (2.4.2) byebug (11.1.3) coderay (1.1.3) @@ -20,8 +19,9 @@ GEM i18n (1.8.11) concurrent-ruby (~> 1.0) jaro_winkler (1.5.4) + json (2.6.2) method_source (1.0.0) - minitest (5.14.4) + minitest (5.15.0) parallel (1.21.0) parser (3.0.3.1) ast (~> 2.4.1) @@ -70,16 +70,17 @@ GEM tzinfo (2.0.4) concurrent-ruby (~> 1.0) unicode-display_width (1.6.1) - zeitwerk (2.5.1) PLATFORMS ruby x86_64-darwin-19 DEPENDENCIES + activesupport (~> 7.0) dotenv (~> 2.7.6) factory_bot (~> 6.1) faker (~> 2.17) + json (~> 2.6) pry-byebug (~> 3.9) require_all (~> 3.0.0) rspec (~> 3.10) diff --git a/cli.rb b/cli.rb index 9fb390a..41dab71 100644 --- a/cli.rb +++ b/cli.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true require "require_all" -require "pry" if ENV["VALET_CONTAINER"].nil? +require "pry" if ENV["CI"].nil? require "json" require_all "lib"