Created
February 14, 2024 00:26
-
-
Save adamcooke/f9937331c37f10bd1d0c917af315511d to your computer and use it in GitHub Desktop.
Initial Gemfile for Innck
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
source "https://rubygems.org" | |
ruby "3.3.0" | |
gem "authie", "~> 4.1" | |
gem "aws-sdk-s3", require: false | |
gem "bootsnap", require: false | |
gem "cssbundling-rails" | |
gem "image_processing", "~> 1.2" | |
gem "jsbundling-rails" | |
gem "kaminari" | |
gem "konfig-config" | |
gem "omniauth" | |
gem "omniauth-google-oauth2" | |
gem "omniauth-microsoft-office365" | |
gem "omniauth-rails_csrf_protection" | |
gem "puma", ">= 5.0" | |
gem "rails", "~> 7.1.3" | |
gem "redis", ">= 4.0.1" | |
gem "sprockets-rails" | |
gem "stimulus-rails" | |
gem "trilogy", "~> 2.4" | |
gem "turbo-rails" | |
gem "tzinfo-data", platforms: %i[windows jruby] | |
gem "view_component" | |
group :development, :test do | |
gem "debug", platforms: %i[mri windows] | |
gem "dotenv-rails", require: false | |
gem "factory_bot_rails" | |
end | |
group :development do | |
gem "annotate" | |
gem "rubocop" | |
gem "rubocop-performance" | |
gem "rubocop-rails" | |
gem "rubocop-rspec" | |
end | |
group :test do | |
gem "database_cleaner-active_record" | |
gem "rspec" | |
gem "rspec-rails" | |
gem "shoulda-matchers" | |
gem "timecop" | |
gem "webmock" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment