diff --git a/Gemfile b/Gemfile index a138342..84a05ea 100644 --- a/Gemfile +++ b/Gemfile @@ -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 gem 'amoeba' +# Makes http fun again! +gem 'httparty' + +# StringScanner provides for lexical scanning operations on a String. +gem 'strscan' + group :doc do gem 'apipie-rails' gem 'sdoc' @@ -60,6 +66,7 @@ group :development, :test do gem 'dotenv-rails' gem 'factory_bot_rails' gem 'faker' + gem 'pry' gem 'rspec_junit_formatter' gem 'rspec-rails' end @@ -72,8 +79,8 @@ group :development do end group :tools do - gem 'squasher', '>= 0.6.0' gem 'rubocop' + gem 'squasher', '>= 0.6.0' end group :test do diff --git a/Gemfile.lock b/Gemfile.lock index fef5a6c..f02220c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -87,6 +87,7 @@ GEM msgpack (~> 1.2) builder (3.2.4) byebug (11.1.3) + coderay (1.1.3) concurrent-ruby (1.1.10) crass (1.0.6) data_migrate (8.5.0) @@ -126,6 +127,9 @@ GEM gemoji (>= 2.1.0) globalid (1.0.1) activesupport (>= 5.0) + httparty (0.20.0) + mime-types (~> 3.0) + multi_xml (>= 0.5.2) i18n (1.12.0) concurrent-ruby (~> 1.0) jaro_winkler (1.5.4) @@ -147,10 +151,14 @@ GEM net-smtp marcel (1.0.2) 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_portile2 (2.8.1) minitest (5.17.0) msgpack (1.6.0) + multi_xml (0.6.0) net-imap (0.3.4) date net-protocol @@ -172,6 +180,9 @@ GEM pg_search (2.3.6) activerecord (>= 5.2) activesupport (>= 5.2) + pry (0.14.1) + coderay (~> 1.1) + method_source (~> 1.0) psych (5.0.2) stringio puma (6.0.2) @@ -295,6 +306,7 @@ GEM sprockets (>= 3.0.0) squasher (0.7.2) stringio (3.0.4) + strscan (3.0.0) thor (1.2.1) tilt (2.0.11) timeout (0.3.1) @@ -332,10 +344,12 @@ DEPENDENCIES faker figaro gemoji-parser + httparty listen oj pg pg_search + pry puma rack-cors rails @@ -351,10 +365,11 @@ DEPENDENCIES spring-commands-rspec sprockets-rails squasher (>= 0.6.0) + strscan will_paginate (~> 3.3) RUBY VERSION ruby 3.0.0p0 BUNDLED WITH - 2.3.26 + 2.4.2