Skip to content
Open
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
32 changes: 16 additions & 16 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '2.6.5'

gem 'rails', '5.2.3'
gem 'rails', '7.0.8.1'
gem 'puma', '~> 3.12.2'
gem 'pg', '>= 0.18', '< 2.0'
gem 'sass-rails', '~> 5.0'
gem 'sass-rails', '~> 6.0', '>= 6.0.0'
gem 'uglifier', '>= 1.3.0'

gem 'coffee-rails', '~> 4.2'
gem 'coffee-rails', '~> 5.0', '>= 5.0.0'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'

Expand All @@ -34,34 +34,34 @@ group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'factory_bot_rails', '>= 5.2.0'
gem 'pry'
gem 'rubocop', '~> 0.76.0', require: false
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rails', '>= 2.4.1'
gem 'rubocop-rspec'
gem 'shoulda-matchers', '~> 2.8.0', require: false
gem 'webmock'
end

group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'meta_request'
gem 'meta_request', '>= 0.7.4'
gem 'rb-readline'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
gem 'web-console', '>= 4.0.0'
end

group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15'
gem 'capybara', '>= 3.30.0'
gem 'selenium-webdriver'
# Easy installation and use of chromedriver to run system tests with Chrome
gem 'chromedriver-helper'
gem 'rails-controller-testing', require: false
gem 'rails-controller-testing', '>= 1.0.5', require: false
gem 'rspec'
gem 'rspec-rails'
gem 'rspec-rails', '>= 3.9.1'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
Expand All @@ -73,18 +73,18 @@ gem 'simplecov', :require => false, :group => :test

# Project Related Gems
gem 'awesome_print', require: 'ap'
gem 'awesome_rails_console'
gem 'awesome_rails_console', '>= 0.4.4'
gem 'bulma-rails', '~> 0.8.0'
gem 'bulma-extensions-rails'
gem 'coderay'
gem 'devise'
gem 'devise', '>= 4.7.2'
gem 'faker'
gem 'font-awesome-rails'
gem 'jquery-rails'
gem 'paper_trail'
gem 'font-awesome-rails', '>= 4.7.0.8'
gem 'jquery-rails', '>= 4.4.0'
gem 'paper_trail', '>= 11.0.0'
gem 'pluck_to_hash'
gem 'nestive', '~> 0.5'
gem 'redcarpet'
gem "recaptcha", :require => "recaptcha/rails"
gem 'slim-rails'
gem 'slim-rails', '>= 3.3.0'
gem 'will_paginate', '~> 3.1.0'