Add new dependencies

This commit is contained in:
Justin Edmund 2023-07-17 04:00:06 -07:00
parent c7b0c48428
commit 583eba428a
2 changed files with 24 additions and 2 deletions

View file

@ -50,6 +50,12 @@ gem 'data_migrate'
# A ruby gem to allow the copying of ActiveRecord objects and their associated children, configurable with a DSL on the model # A ruby gem to allow the copying of ActiveRecord objects and their associated children, configurable with a DSL on the model
gem 'amoeba' gem 'amoeba'
# Makes http fun again!
gem 'httparty'
# StringScanner provides for lexical scanning operations on a String.
gem 'strscan'
group :doc do group :doc do
gem 'apipie-rails' gem 'apipie-rails'
gem 'sdoc' gem 'sdoc'
@ -60,6 +66,7 @@ group :development, :test do
gem 'dotenv-rails' gem 'dotenv-rails'
gem 'factory_bot_rails' gem 'factory_bot_rails'
gem 'faker' gem 'faker'
gem 'pry'
gem 'rspec_junit_formatter' gem 'rspec_junit_formatter'
gem 'rspec-rails' gem 'rspec-rails'
end end
@ -72,8 +79,8 @@ group :development do
end end
group :tools do group :tools do
gem 'squasher', '>= 0.6.0'
gem 'rubocop' gem 'rubocop'
gem 'squasher', '>= 0.6.0'
end end
group :test do group :test do

View file

@ -87,6 +87,7 @@ GEM
msgpack (~> 1.2) msgpack (~> 1.2)
builder (3.2.4) builder (3.2.4)
byebug (11.1.3) byebug (11.1.3)
coderay (1.1.3)
concurrent-ruby (1.1.10) concurrent-ruby (1.1.10)
crass (1.0.6) crass (1.0.6)
data_migrate (8.5.0) data_migrate (8.5.0)
@ -126,6 +127,9 @@ GEM
gemoji (>= 2.1.0) gemoji (>= 2.1.0)
globalid (1.0.1) globalid (1.0.1)
activesupport (>= 5.0) activesupport (>= 5.0)
httparty (0.20.0)
mime-types (~> 3.0)
multi_xml (>= 0.5.2)
i18n (1.12.0) i18n (1.12.0)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
jaro_winkler (1.5.4) jaro_winkler (1.5.4)
@ -147,10 +151,14 @@ GEM
net-smtp net-smtp
marcel (1.0.2) marcel (1.0.2)
method_source (1.0.0) method_source (1.0.0)
mime-types (3.4.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2022.0105)
mini_mime (1.1.2) mini_mime (1.1.2)
mini_portile2 (2.8.1) mini_portile2 (2.8.1)
minitest (5.17.0) minitest (5.17.0)
msgpack (1.6.0) msgpack (1.6.0)
multi_xml (0.6.0)
net-imap (0.3.4) net-imap (0.3.4)
date date
net-protocol net-protocol
@ -172,6 +180,9 @@ GEM
pg_search (2.3.6) pg_search (2.3.6)
activerecord (>= 5.2) activerecord (>= 5.2)
activesupport (>= 5.2) activesupport (>= 5.2)
pry (0.14.1)
coderay (~> 1.1)
method_source (~> 1.0)
psych (5.0.2) psych (5.0.2)
stringio stringio
puma (6.0.2) puma (6.0.2)
@ -295,6 +306,7 @@ GEM
sprockets (>= 3.0.0) sprockets (>= 3.0.0)
squasher (0.7.2) squasher (0.7.2)
stringio (3.0.4) stringio (3.0.4)
strscan (3.0.0)
thor (1.2.1) thor (1.2.1)
tilt (2.0.11) tilt (2.0.11)
timeout (0.3.1) timeout (0.3.1)
@ -332,10 +344,12 @@ DEPENDENCIES
faker faker
figaro figaro
gemoji-parser gemoji-parser
httparty
listen listen
oj oj
pg pg
pg_search pg_search
pry
puma puma
rack-cors rack-cors
rails rails
@ -351,10 +365,11 @@ DEPENDENCIES
spring-commands-rspec spring-commands-rspec
sprockets-rails sprockets-rails
squasher (>= 0.6.0) squasher (>= 0.6.0)
strscan
will_paginate (~> 3.3) will_paginate (~> 3.3)
RUBY VERSION RUBY VERSION
ruby 3.0.0p0 ruby 3.0.0p0
BUNDLED WITH BUNDLED WITH
2.3.26 2.4.2