-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
53 lines (45 loc) · 994 Bytes
/
Gemfile
File metadata and controls
53 lines (45 loc) · 994 Bytes
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.4.5"
gem "rails", "~> 7.1.3"
gem "pg", "~> 1.5"
gem "puma", "~> 6.4"
gem "sass-rails", "~> 6.0"
gem "importmap-rails"
gem "turbo-rails"
gem "stimulus-rails"
gem "jbuilder"
gem "redis", "~> 5.0"
gem "bootsnap", require: false
gem "rack-cors"
gem "pdf-reader"
gem "combine_pdf"
gem "rtesseract"
gem "caracal"
gem "prawn"
gem "sidekiq"
gem "attr_encrypted"
gem "csv"
gem "ostruct"
group :development, :test do
gem "sqlite3", "~> 1.4"
gem "byebug"
gem "rspec-rails", "~> 6.1"
gem "cucumber-rails", require: false
gem "database_cleaner-active_record"
gem "factory_bot_rails"
end
group :development do
gem "web-console"
gem "listen", "~> 3.8"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
end
group :test do
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
gem "simplecov", require: false
end
gem "openai", "~> 0.34.1"
gem "ruby-openai", "~> 8.3"