Sha256: dab711b23578db627026d9e1ad12dcf09b69292df7119f630a05d6c527e81b23

Contents?: true

Size: 1.94 KB

Versions: 5

Compression:

Stored size: 1.94 KB

Contents

# frozen_string_literal: true

source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 6.1"
# Use sqlite3 as the database for Active Record
gem "sqlite3", "~> 1.4"
# Use Puma as the app server
gem "puma", "~> 4.1"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 2.7"
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# 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
gem "bootsnap", ">= 1.4.2", require: false

group :development, :test, :production 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, :test do
  gem "rspec-rails", "~> 6.0.0"
end

group :development do
  # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  gem "web-console", ">= 3.3.0"
  gem "listen", "~> 3.2"
  # 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
  # There is an important fix in 3.39.1.
  gem "capybara", "~> 3.39.1"
  # gem 'capybara-webkit'
  gem "selenium-webdriver", ">= 4.9"
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]

gem "shakapacker", path: "../.."
gem "react_on_rails", "13.3.3"

gem "net-smtp", "~> 0.3.3"

# Psych 4+ comes with breakibg changes in Ruby 3.1.0. Though the issue are
# addressed in Rails 7. So remove this the next line in Rails 7.
gem "psych", "< 4"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
shakapacker-7.2.3 spec/dummy/Gemfile
shakapacker-7.3.0.beta.1 spec/dummy/Gemfile
shakapacker-7.2.2 spec/dummy/Gemfile
shakapacker-7.2.1 spec/dummy/Gemfile
shakapacker-7.2.0 spec/dummy/Gemfile