Last active
January 23, 2023 03:23
-
-
Save simonhlee97/65eed25f08269b19d07bb5aa62c66960 to your computer and use it in GitHub Desktop.
Gemfile (with RSpec and shoulda-matchers)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source "https://rubygems.org" | |
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |
ruby "3.0.2" | |
gem "bootsnap", require: false | |
gem "devise" | |
gem "rails", "~> 7.0.4", ">= 7.0.4.1" | |
gem "sprockets-rails" | |
gem "pg", "~> 1.1" | |
gem "puma", "~> 5.0" | |
gem "importmap-rails" | |
gem "turbo-rails" | |
gem "stimulus-rails" | |
gem "jbuilder" | |
gem "redis", "~> 4.0" | |
gem "sassc-rails" | |
# gem "tailwindcss-rails" | |
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis] | |
# gem "kredis" | |
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword] | |
# gem "bcrypt", "~> 3.1.7" | |
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | |
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ] | |
# Reduces boot times through caching; required in config/boot.rb | |
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images] | |
# gem "image_processing", "~> 1.2" | |
group :development, :test do | |
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem | |
gem "debug", platforms: %i[ mri mingw x64_mingw ] | |
gem "factory_bot_rails" | |
gem "faker", git: "https://github.com/faker-ruby/faker.git", branch: "main" | |
gem "pry-rails" | |
gem "rspec-rails", "~> 5.1", ">= 5.1.2" | |
end | |
group :development do | |
# Use console on exceptions pages [https://github.com/rails/web-console] | |
gem "web-console" | |
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler] | |
# gem "rack-mini-profiler" | |
# Speed up commands on slow machines / big apps [https://github.com/rails/spring] | |
# gem "spring" | |
end | |
group :test do | |
gem "shoulda-matchers", "~> 5.0" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment