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
8 changes: 6 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ruby "3.2.2"
gem "rails", "~> 7.1.2"

# Use postgresql as the database for Active Record
gem "pg", "~> 1.1"
gem "pg", "1.6.2"

# Use the Puma web server [https://github.com/puma/puma]
gem "puma", ">= 5.0"
Expand Down Expand Up @@ -76,10 +76,14 @@ gem "httparty", "~> 0.21.0"

gem "order_query", "~> 0.5.3"

gem 'facet_rails_common', git: 'https://github.com/0xfacet/facet_rails_common.git'
gem 'facet_rails_common', git: 'https://github.com/0xfacet/facet_rails_common.git', ref: 'lenient_base64'

gem "cbor", "~> 0.5.9"

gem "net-http-persistent", "~> 4.0"

gem "concurrent-ruby", "~> 1.2"

gem 'rswag-api'

gem 'rswag-ui'
39 changes: 22 additions & 17 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
GIT
remote: https://github.com/0xfacet/facet_rails_common.git
revision: dd72807b5e51dc6fd7969f320cbb9bedfa92c4a5
revision: 52b9b5e34183028d095b6e8fc0f1126bfb703f97
ref: lenient_base64
specs:
facet_rails_common (0.1.0)
order_query (~> 0.5.3)
Expand Down Expand Up @@ -94,8 +95,8 @@ GEM
rbtree3 (~> 0.6)
ast (2.4.2)
awesome_print (1.9.2)
base64 (0.2.0)
bigdecimal (3.1.5)
base64 (0.3.0)
bigdecimal (3.3.1)
bootsnap (1.17.0)
msgpack (~> 1.2)
builder (3.2.4)
Expand All @@ -105,8 +106,8 @@ GEM
activesupport
tzinfo
coderay (1.1.3)
concurrent-ruby (1.2.2)
connection_pool (2.4.1)
concurrent-ruby (1.3.5)
connection_pool (3.0.2)
crass (1.0.6)
dalli (3.2.6)
date (3.3.4)
Expand All @@ -118,8 +119,7 @@ GEM
dotenv-rails (2.8.1)
dotenv (= 2.8.1)
railties (>= 3.2)
drb (2.2.0)
ruby2_keywords
drb (2.2.3)
erubi (1.12.0)
eth (0.5.11)
forwardable (~> 1.3)
Expand All @@ -140,7 +140,7 @@ GEM
multi_xml (>= 0.5.2)
httpparty (0.2.0)
httparty (> 0)
i18n (1.14.1)
i18n (1.14.7)
concurrent-ruby (~> 1.0)
io-console (0.7.1)
irb (1.10.1)
Expand Down Expand Up @@ -175,10 +175,12 @@ GEM
method_source (1.0.0)
mini_mime (1.1.5)
mini_portile2 (2.8.5)
minitest (5.20.0)
minitest (5.26.2)
msgpack (1.7.2)
multi_xml (0.6.0)
mutex_m (0.2.0)
mutex_m (0.3.0)
net-http-persistent (4.0.8)
connection_pool (>= 2.2.4, < 4)
net-imap (0.4.8)
date
net-protocol
Expand All @@ -196,13 +198,15 @@ GEM
nokogiri (1.15.5-x86_64-linux)
racc (~> 1.4)
openssl (3.2.0)
order_query (0.5.3)
activerecord (>= 5.0, < 7.2)
activesupport (>= 5.0, < 7.2)
order_query (0.5.6)
activerecord (>= 5.0, < 8.2)
activesupport (>= 5.0, < 8.2)
parser (3.2.2.4)
ast (~> 2.4.1)
racc
pg (1.5.4)
pg (1.6.2-aarch64-linux)
pg (1.6.2-arm64-darwin)
pg (1.6.2-x86_64-linux)
pkg-config (1.5.6)
pry (0.14.2)
coderay (~> 1.1)
Expand Down Expand Up @@ -294,7 +298,6 @@ GEM
rswag-ui (2.13.0)
actionpack (>= 3.1, < 7.2)
railties (>= 3.1, < 7.2)
ruby2_keywords (0.0.5)
rubyzip (2.3.2)
scout_apm (5.3.5)
parser
Expand All @@ -303,7 +306,7 @@ GEM
stackprof (0.2.25)
stringio (3.1.0)
thor (1.3.0)
timeout (0.4.1)
timeout (0.4.4)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
webrick (1.8.1)
Expand All @@ -327,6 +330,7 @@ DEPENDENCIES
cbor (~> 0.5.9)
clipboard
clockwork (~> 3.0)
concurrent-ruby (~> 1.2)
dalli (~> 3.2)
debug
dotenv-rails (~> 2.8)
Expand All @@ -336,8 +340,9 @@ DEPENDENCIES
httpparty (~> 0.2.0)
kaminari (~> 1.2)
memoist (~> 0.16.2)
net-http-persistent (~> 4.0)
order_query (~> 0.5.3)
pg (~> 1.1)
pg (= 1.6.2)
pry
puma (>= 5.0)
rack-cors (~> 2.0)
Expand Down
Loading