pinrails/Gemfile

54 lines
1.8 KiB
Ruby
Raw Normal View History

2021-08-21 23:30:19 +00:00
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
2021-08-23 20:29:19 +00:00
ruby '~> 3.0.2'
2021-08-21 23:30:19 +00:00
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
2021-08-23 20:29:19 +00:00
gem 'rails', '~> 6.1.4', '>= 6.0.3.7'
2021-08-21 23:30:19 +00:00
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4'
# Use Puma as the app server
2021-08-23 20:29:19 +00:00
gem 'puma', '~> 5.4'
2021-08-21 23:30:19 +00:00
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
2021-08-23 20:29:19 +00:00
gem 'webpacker', '~> 5.4'
2021-08-27 04:40:47 +00:00
# https://github.com/hotwired/turbo-rails
gem 'turbo-rails'
2021-08-21 23:30:19 +00:00
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
2021-08-23 20:29:19 +00:00
gem 'jbuilder', '~> 2.11'
2021-08-21 23:30:19 +00:00
# Use Redis adapter to run Action Cable in production
2021-08-27 04:40:47 +00:00
gem 'redis', '~> 4.0'
2021-08-21 23:30:19 +00:00
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
# Reduces boot times through caching; required in config/boot.rb
2021-08-23 20:29:19 +00:00
gem 'bootsnap', '>= 1.7', require: false
2021-08-21 23:30:19 +00:00
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
2021-08-24 16:09:58 +00:00
gem 'pry-rails'
2021-08-21 23:30:19 +00:00
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
2021-08-23 20:29:19 +00:00
gem 'web-console', '>= 4.1.0'
gem 'listen', '~> 3.7'
2021-08-21 23:30:19 +00:00
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
# Adds support for Capybara system testing and selenium driver
2021-08-23 20:29:19 +00:00
gem 'capybara', '>= 3.35'
2021-08-21 23:30:19 +00:00
gem 'selenium-webdriver'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]