Skip to content

Instantly share code, notes, and snippets.

@rafaelqueiroz88
Last active November 22, 2025 02:23
Show Gist options
  • Select an option

  • Save rafaelqueiroz88/957aa8c793d96b63b5b96538ef0d1fb8 to your computer and use it in GitHub Desktop.

Select an option

Save rafaelqueiroz88/957aa8c793d96b63b5b96538ef0d1fb8 to your computer and use it in GitHub Desktop.
Gemfile com libs favoritas
source 'https://rubygems.org'
gem 'rails'
gem 'pg'
gem 'puma'
gem 'bcrypt'
gem 'bcrypt-ruby'
gem 'blueprinter'
gem 'bootsnap', require: false
gem 'image_processing'
gem 'rack-cors', require: 'rack/cors'
gem 'dotenv-rails'
# Optionals
# gem 'ransack', github: 'activerecord-hackery/ransack'
# gem 'rails_admin'
# gem 'sidekiq'
# gem 'sidekiq-cron'
group :development, :test do
gem 'byebug'
gem 'rubocop'
gem 'factory_bot'
gem 'faker'
# Optionals
# gem 'rswag-api'
# gem 'rswag-ui'
# gem 'rswag-specs'
end
group :development do
gem 'annotate'
gem 'listen'
gem 'rack-mini-profiler'
gem 'solargraph'
gem 'spring'
gem 'web-console'
end
group :test do
gem 'capybara'
gem 'database_cleaner-active_record'
gem 'rexml'
gem 'rspec-rails'
# gem 'rspec-sidekiq'
gem 'selenium-webdriver'
gem 'webdrivers'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment