Skip to content
Merged
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 @@ -45,3 +45,4 @@ coverage/
/config/credentials/development.key

/config/credentials/test.key
.env.development
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
nodejs 20.9.0
ruby 3.4.4
ruby 3.4.7
10 changes: 7 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,18 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.4.4'
ruby '3.4.7'

gem 'active_storage_validations', '~> 1.0' # Active Storage gems for validating attachments https://github.com/igorkasyanchuk/active_storage_validations
gem 'aws-sdk-s3', '~> 1.119', require: false # Official AWS Ruby gem for Amazon S3
gem 'aws-sdk-s3', '~> 1.208', require: false # Official AWS Ruby gem for Amazon S3
gem 'bootsnap', require: false # Reduces boot times through caching; required in config/boot.rb
gem 'cancancan', '~> 3.4' # Authorization library which restricts what resources a given user is allowed to access
gem 'cssbundling-rails' # Bundle and process CSS [https://github.com/rails/cssbundling-rails]
gem 'devise' # Devise 4.0 works with Rails 4.1 onwards.
# OAuth integration
gem 'omniauth'
gem 'omniauth-github'
gem 'omniauth-rails_csrf_protection'
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
gem 'image_processing', '~> 1.2'
gem 'invisible_captcha' # Spam protection solution [https://github.com/markets/invisible_captcha]
Expand All @@ -22,7 +26,7 @@ gem 'motor-admin', '>= 0.4.30'
gem 'pg', '~> 1.5' # Use postgresql as the database for Active Record
gem 'premailer-rails', '~> 1.12' # This gem is a drop in solution for styling HTML emails with CSS
gem 'puma', '~> 6.0' # Use the Puma web server [https://github.com/puma/puma]
gem 'rails', '~> 8.0' # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem 'rails', '~> 8.1' # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
# Pagination
gem 'pagy', '~> 9.4.0'
# gem 'kaminari'
Expand Down
Loading
Loading