Add explicit deps to gemfile

This commit is contained in:
Ethan Dennis
2022-05-31 11:52:52 -07:00
parent f4fe9069ef
commit 662ccb3927
3 changed files with 9 additions and 6 deletions

View File

@@ -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"

View File

@@ -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)

2
cli.rb
View File

@@ -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"