Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ end

ruby '>= 3.0.0'

gem 'bcrypt'
gem 'bcrypt', '>= 3.1.22'
gem 'puma', '~> 5.6'
gem 'rack-cors', require: 'rack/cors'
gem 'rails', '~> 6.1.0'
Expand All @@ -23,7 +23,7 @@ group :development, :test do
gem 'byebug', platforms: %i(mri mingw x64_mingw)
gem 'factory_bot_rails'
gem 'graphiql-rails', '~> 1.8'
gem 'rubocop'
gem 'rubocop', '>= 1.82.0'
end

group :development do
Expand Down
39 changes: 26 additions & 13 deletions app/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,12 @@ GEM
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
addressable (2.8.9)
public_suffix (>= 2.0.2, < 8.0)
ast (2.4.3)
base64 (0.3.0)
bcrypt (3.1.20)
bcrypt (3.1.22)
bigdecimal (4.0.1)
bindex (0.8.1)
builder (3.3.0)
byebug (11.1.3)
Expand All @@ -75,7 +78,7 @@ GEM
factory_bot_rails (6.5.0)
factory_bot (~> 6.5)
railties (>= 6.1.0)
ffi (1.17.2-x86_64-darwin)
ffi (1.17.2)
globalid (1.3.0)
activesupport (>= 6.1)
graphiql-rails (1.10.5)
Expand All @@ -86,7 +89,10 @@ GEM
graphql (~> 1.0, >= 1.0.0)
i18n (1.14.7)
concurrent-ruby (~> 1.0)
json (2.17.1)
json (2.19.2)
json-schema (6.2.0)
addressable (~> 2.8)
bigdecimal (>= 3.1, < 5)
language_server-protocol (3.17.0.5)
lint_roller (1.1.0)
listen (3.0.8)
Expand All @@ -103,6 +109,8 @@ GEM
net-pop
net-smtp
marcel (1.1.0)
mcp (0.9.0)
json-schema (>= 4.1)
method_source (1.1.0)
mini_mime (1.1.5)
minitest (5.26.1)
Expand All @@ -118,11 +126,13 @@ GEM
nio4r (2.7.5)
nokogiri (1.17.2-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.17.2-x86_64-linux)
racc (~> 1.4)
parallel (1.27.0)
parser (3.3.10.0)
parser (3.3.10.2)
ast (~> 2.4.1)
racc
prism (1.6.0)
prism (1.9.0)
public_suffix (6.0.2)
puma (5.6.9)
nio4r (~> 2.0)
Expand Down Expand Up @@ -166,20 +176,21 @@ GEM
rb-inotify (0.11.1)
ffi (~> 1.0)
regexp_parser (2.11.3)
rubocop (1.81.7)
rubocop (1.85.1)
json (~> 2.3)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.1.0)
mcp (~> 0.6)
parallel (~> 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 2.9.3, < 3.0)
rubocop-ast (>= 1.47.1, < 2.0)
rubocop-ast (>= 1.49.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 4.0)
rubocop-ast (1.48.0)
rubocop-ast (1.49.1)
parser (>= 3.3.7.2)
prism (~> 1.4)
prism (~> 1.7)
ruby-progressbar (1.13.0)
search_object (1.2.5)
search_object_graphql (1.0.5)
Expand All @@ -198,13 +209,14 @@ GEM
activesupport (>= 6.1)
sprockets (>= 3.0.0)
sqlite3 (1.7.3-x86_64-darwin)
sqlite3 (1.7.3-x86_64-linux)
thor (1.4.0)
timeout (0.4.4)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (3.2.0)
unicode-emoji (~> 4.1)
unicode-emoji (4.1.0)
unicode-emoji (4.2.0)
validate_url (1.0.15)
activemodel (>= 3.0.0)
public_suffix
Expand All @@ -221,9 +233,10 @@ GEM

PLATFORMS
x86_64-darwin-20
x86_64-linux

DEPENDENCIES
bcrypt
bcrypt (>= 3.1.22)
byebug
factory_bot_rails
graphiql-rails (~> 1.8)
Expand All @@ -233,7 +246,7 @@ DEPENDENCIES
puma (~> 5.6)
rack-cors
rails (~> 6.1.0)
rubocop
rubocop (>= 1.82.0)
search_object
search_object_graphql
spring
Expand All @@ -246,4 +259,4 @@ RUBY VERSION
ruby 3.0.0p0

BUNDLED WITH
2.2.3
2.2.33
Loading