# coding: utf-8 source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby '3.2.4' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', github: 'rails/rails' gem "sprockets-rails", "~> 3.4" # Use sqlite3 as the database for Active Record gem 'sqlite3', '~> 1.4' #gem 'carrierwave' # Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails] gem "jsbundling-rails", "~> 0.1.0" # Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev] gem "turbo-rails", "~> 0.8.3" # Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev] gem "stimulus-rails", ">= 0.4.0" # Bundle and process CSS [https://github.com/rails/cssbundling-rails] gem "cssbundling-rails", ">= 0.1.0" # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder gem 'jbuilder', '~> 2.7' gem 'puma', '~> 5.0' #gem 'mini_magick', '~> 4.2' group :development do gem "capistrano", "~> 3.19", require: false gem 'capistrano3-puma', "~> 5.2", github: "matsu911/capistrano-puma", require: false gem "capistrano-rails", "~> 1.6", require: false end group :development, :test do gem 'net-ssh', '~> 7.2' end group :test do # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing] gem "capybara", ">= 3.26" gem "selenium-webdriver", ">= 4.0.0.rc1" gem "webdrivers" gem 'simplecov', require: false end # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]