forked from Shopify/product-taxonomy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
32 lines (25 loc) · 731 Bytes
/
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
# frozen_string_literal: true
source "https://rubygems.org"
# core app
gem "rails", "~> 7.1.3", ">= 7.1.3.2"
gem "sqlite3", "~> 1.7"
gem "puma", ">= 5.0"
gem "tzinfo-data", platforms: [:windows, :jruby]
gem "bootsnap", require: false
gem "rubocop-shopify", require: false
# docs
gem "jekyll", "~> 4.3"
gem "jekyll-redirect-from", "~> 0.16"
# command line
gem "cli-ui", "~> 2.2", require: false
gem "tty-option", "~> 0.3", require: false
# generate taxonomy mappings
gem "qdrant-ruby", require: "qdrant"
gem "ruby-openai"
gem 'dotenv', groups: [:development, :test]
group :development, :test do
gem "debug", platforms: [:mri, :windows]
gem "mocha"
gem "factory_bot_rails", "~> 6.4"
gem "minitest-hooks", "~> 1.5"
end