-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
53 lines (37 loc) · 1.43 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
ruby "3.1.2"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.0.4", ">= 7.0.4.3"
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails"
# Use the Puma web server
gem "puma", "~> 6.3"
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem "importmap-rails"
# Hotwire"s SPA-like page accelerator [https://turbo.hotwired.dev]
gem "turbo-rails"
# Hotwire"s modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
# Use PostgreSQL as the database
gem "pg", "~> 1.5", ">= 1.5.3"
# Use the ruby-openai gem for ChatGPT integration
gem "ruby-openai", "~> 4.2"
source "https://rubygems.org"
# Use tiktoken for token information
gem "tiktoken_ruby"
# Use jQuery
gem "jquery-rails"
# Use dotenv-rails for ENV variables
gem "dotenv-rails", "~> 2.8", ">= 2.8.1"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", "~> 1.8", platforms: %i[mri mingw x64_mingw]
end
group :development do
# Use console on exceptions pages
gem "web-console"
end
gem "tailwindcss-rails", "~> 2.0"