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 @@ -47,7 +47,7 @@
gem "telegram-bot-ruby", "~> 2.0" # 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
gem "ruby-openai", "8.3.0" # OpenAI (Whisper, GPT-4) - specific version for Faraday 2.x compatibility
gem "google-apis-calendar_v3" # Google Calendar API
gem "googleauth" # Google OAuth
gem "httparty", "~> 0.22" # HTTP requests
Expand Down
11 changes: 8 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
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.17.1)
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 @@ -351,7 +353,7 @@ GEM
rubocop (>= 1.72)
rubocop-performance (>= 1.24)
rubocop-rails (>= 2.30)
ruby-openai (7.0.1)
ruby-openai (8.3.0)
event_stream_parser (>= 0.3.0, < 2.0.0)
faraday (>= 1)
faraday-multipart (>= 1)
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 @@ -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 @@ -452,7 +457,7 @@ DEPENDENCIES
puma (>= 5.0)
rails (~> 8.0.3)
rubocop-rails-omakase
ruby-openai (= 7.0.1)
ruby-openai (= 8.3.0)
selenium-webdriver
solid_cable
solid_queue
Expand Down
Loading