Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🥇 Inssue create the candidates section - Raquel #14

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
.env.*
!.env.example

/coverage/*
/public/packs
/public/packs-test
/node_modules
Expand Down
90 changes: 42 additions & 48 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,48 +1,42 @@
# frozen_string_literal: true

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

ruby '2.7.7'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem 'rails', '~> 6.1.7', '>= 6.1.7.3'
# Use mysql as the database for Active Record
gem 'mysql2', '~> 0.5'
# Use Puma as the app server
gem 'puma', '~> 5.0'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 5.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.4', require: false

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
end

group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 4.1.0'
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem 'rack-mini-profiler', '~> 2.0'
end

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

gem 'rspec-rails', '~> 6.0.0', groups: %i[development test]

gem 'factory_bot_rails', '~> 6.0.0', groups: %i[development test]

gem 'rubocop', '~> 1.48', groups: %i[development test], require: false
gem 'rubocop-performance', '~> 1.16', groups: %i[development test], require: false
gem 'rubocop-rails', '~> 2.18', groups: %i[development test], require: false
gem 'rubocop-rake', '~> 0.6.0', groups: %i[development test], require: false
gem 'rubocop-rspec', '~> 2.19', groups: %i[development test], require: false
# frozen_string_literal: true

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

ruby '2.7.7'
gem 'rails', '~> 6.1.7', '>= 6.1.7.3'

gem 'jbuilder', '~> 2.7'
gem 'mysql2', '~> 0.5'
gem 'puma', '~> 5.0'
gem 'react-rails'
gem 'rswag-api'
gem 'rswag-ui'
gem 'webpacker', '~> 5.0'

gem 'bootsnap', '>= 1.4.4', require: false

group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'dotenv-rails'
gem 'faker', '~> 3.2.1'
gem 'shoulda-matchers', '~> 5.3'
gem 'simplecov', require: false
end

group :development do
gem 'rack-mini-profiler', '~> 2.0'
gem 'web-console', '>= 4.1.0'
end

gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]

gem 'rspec-rails', '~> 6.0.0', groups: %i[development test]

gem 'factory_bot_rails', '~> 6.0.0', groups: %i[development test]

gem 'rubocop', '~> 1.48', groups: %i[development test], require: false
gem 'rubocop-performance', '~> 1.16', groups: %i[development test], require: false
gem 'rubocop-rails', '~> 2.18', groups: %i[development test], require: false
gem 'rubocop-rake', '~> 0.6.0', groups: %i[development test], require: false
gem 'rubocop-rspec', '~> 2.19', groups: %i[development test], require: false
Loading