hovancik/BSDSec

View on GitHub
Gemfile

Summary

Maintainability
Test Coverage
Missing frozen string literal comment.
source 'https://rubygems.org'
ruby '3.3.6'
 
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0'
# Use postgresql as the database for Active Record
gem 'pg'
# Webpacker
gem 'webpacker'
 
gem 'sass-rails', '~> 6.0'
 
# bundle exec rake doc:rails generates the API under doc/api.
# gem 'sdoc', '~> 0.4.0', group: :doc
 
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 2.0'
 
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
 
# Use unicorn as the app server
# gem 'unicorn'
 
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
 
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
 
gem 'listen'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# A Ruby gem to load environment variables from `.env`.
gem 'dotenv-rails'
# Code coverage
gem 'simplecov', require: false
end
 
# Sending tweets to Twitter
gem 'x', '~> 0.14.1'
 
Missing space after `#`.
#PAGINATION
gem 'kaminari'
 
Missing space after `#`.
#FRIENDLY_ID
gem 'friendly_id'
 
# PUMA (for heroku)
gem 'puma'
 
gem 'bootsnap'
 
# Monitoring
gem 'scout_apm'
 
# Error tracking
gem 'rollbar'