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