43 lines
877 B
Ruby
43 lines
877 B
Ruby
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
ruby "2.7.4"
|
|
|
|
gem "jbuilder", "~> 2.7"
|
|
gem "pg", "~> 1.1"
|
|
gem "puma", "~> 5.0"
|
|
gem "rails", "~> 6.1.4"
|
|
gem "sass-rails", ">= 6"
|
|
gem "turbolinks", "~> 5"
|
|
gem "webpacker", "~> 5.0"
|
|
gem "bootsnap", ">= 1.4.4", require: false
|
|
|
|
gem "devise"
|
|
gem "devise-bootstrap-views", "~> 1.0"
|
|
gem "devise-i18n"
|
|
|
|
gem "administrate"
|
|
gem "graphql"
|
|
gem "tailwindcss-rails"
|
|
|
|
group :development, :test do
|
|
gem "pry-byebug", platforms: [:mri, :mingw, :x64_mingw]
|
|
gem "capybara"
|
|
gem "rspec-rails"
|
|
|
|
gem "rubocop-rails", require: false
|
|
gem "rubocop-rspec", require: false
|
|
gem "rubocop-shopify", require: false
|
|
end
|
|
|
|
group :development do
|
|
gem "dotenv-rails"
|
|
gem "graphql_playground-rails"
|
|
gem "web-console", ">= 4.1.0"
|
|
|
|
gem "listen", "~> 3.3"
|
|
gem "spring"
|
|
end
|