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
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
gem "bootsnap", require: false

# Environment variables
gem "dotenv-rails", groups: [:development, :test]

Check failure on line 35 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Layout/SpaceInsideArrayLiteralBrackets: Use space inside array brackets.

Check failure on line 35 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Layout/SpaceInsideArrayLiteralBrackets: Use space inside array brackets.

# Deploy this application anywhere as a Docker container [https://kamal-deploy.org]
gem "kamal", require: false
Expand All @@ -44,7 +44,7 @@
# gem "image_processing", "~> 1.2"

# AI and integrations
gem "telegram-bot-ruby", "~> 2.0" # Telegram Bot API
gem "telegram-bot-ruby", "~> 2.5" # Telegram Bot API
gem "faraday", "~> 2.7" # HTTP client
gem "faraday-multipart", "~> 1.0" # Multipart support for Faraday
gem "ruby-openai", "7.0.1" # OpenAI (Whisper, GPT-4) - specific version for Faraday 2.x compatibility
Expand Down
13 changes: 9 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ GEM
rack-test (>= 0.6.3)
regexp_parser (>= 1.5, < 3.0)
xpath (~> 3.2)
concurrent-ruby (1.3.5)
concurrent-ruby (1.3.6)
connection_pool (2.5.4)
crass (1.0.6)
csv (3.3.5)
Expand Down Expand Up @@ -192,7 +192,7 @@ GEM
jbuilder (2.14.1)
actionview (>= 7.0.0)
activesupport (>= 7.0.0)
json (2.16.0)
json (2.18.0)
jwt (3.1.2)
base64
kamal (2.8.2)
Expand Down Expand Up @@ -248,6 +248,8 @@ GEM
racc (~> 1.4)
nokogiri (1.18.10-arm64-darwin)
racc (~> 1.4)
nokogiri (1.18.10-x86_64-linux-gnu)
racc (~> 1.4)
os (1.1.4)
ostruct (0.6.3)
parallel (1.27.0)
Expand Down Expand Up @@ -383,6 +385,7 @@ GEM
thor (>= 1.3.1)
sqlite3 (2.8.0-aarch64-linux-gnu)
sqlite3 (2.8.0-arm64-darwin)
sqlite3 (2.8.0-x86_64-linux-gnu)
sshkit (1.24.0)
base64
logger
Expand All @@ -393,7 +396,7 @@ GEM
stimulus-rails (1.3.4)
railties (>= 6.0.0)
stringio (3.1.8)
telegram-bot-ruby (2.4.0)
telegram-bot-ruby (2.5.0)
dry-struct (~> 1.6)
faraday (~> 2.0)
faraday-multipart (~> 1.0)
Expand All @@ -402,6 +405,7 @@ GEM
thruster (0.1.16)
thruster (0.1.16-aarch64-linux)
thruster (0.1.16-arm64-darwin)
thruster (0.1.16-x86_64-linux)
timeout (0.4.4)
trailblazer-option (0.1.2)
tsort (0.2.0)
Expand Down Expand Up @@ -433,6 +437,7 @@ GEM
PLATFORMS
aarch64-linux
arm64-darwin-24
x86_64-linux

DEPENDENCIES
bootsnap
Expand All @@ -458,7 +463,7 @@ DEPENDENCIES
solid_queue
sqlite3 (>= 2.1)
stimulus-rails
telegram-bot-ruby (~> 2.0)
telegram-bot-ruby (~> 2.5)
thruster
turbo-rails
tzinfo-data
Expand Down
Loading