forked from kirillplatonov/shopify-hotwire-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
40 lines (33 loc) · 790 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
33
34
35
36
37
38
39
40
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.2"
# backend
gem "rails", "~> 7.0.6"
gem "pg", "~> 1.1"
gem "redis", "~> 5.0"
gem "puma", "~> 6.0"
gem "bootsnap", require: false
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
gem "dotenv-rails"
# shopify
gem "shopify_app", "~> 21.6"
gem "polaris_view_components", "~> 1.1.0"
gem "shopify_graphql", "~> 1.2"
# frontend
gem "sprockets-rails"
gem "jsbundling-rails"
gem "turbo-rails"
gem "stimulus-rails"
group :development, :test do
gem "debug", platforms: %i[ mri mingw x64_mingw ]
end
group :development do
gem "web-console"
gem "pry-rails"
gem "hotwire-livereload"
end
group :test do
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
end