Skip to content
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
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.1"
gem "pg", "~> 1.5"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", ">= 5.0"
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
Expand Down Expand Up @@ -34,14 +34,14 @@
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"

gem 'sass-rails', '>= 6'

Check failure on line 37 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

Check failure on line 37 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
#gem 'webpacker', '~> 5.0'

Check failure on line 38 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Layout/LeadingCommentSpace: Missing space after `#`.
#gem 'jbuilder', '~>2.7'

Check failure on line 39 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Layout/LeadingCommentSpace: Missing space after `#`.

# Added Gems
gem 'devise'

Check failure on line 42 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
gem 'omniauth'

Check failure on line 43 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
gem 'omniauth-google-oauth2'

Check failure on line 44 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
Expand All @@ -57,8 +57,8 @@
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"
gem 'capistrano', '~> 3.10', require: false

Check failure on line 60 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

Check failure on line 60 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
gem 'capistrano-rails', '~> 1.5', require: false

Check failure on line 61 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/StringLiterals: Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
gem 'capistrano-rbenv', '~>2.1'
gem 'capistrano-db-tasks', require: false
gem 'listen', '~> 3.3'
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ GEM
parser (3.3.5.0)
ast (~> 2.4.1)
racc
pg (1.5.8)
pg (1.5.9)
psych (5.1.2)
stringio
public_suffix (6.0.1)
Expand Down Expand Up @@ -401,7 +401,7 @@ DEPENDENCIES
listen (~> 3.3)
omniauth
omniauth-google-oauth2
pg (~> 1.1)
pg (~> 1.5)
puma (>= 5.0)
rails (~> 7.2.1)
rubocop-rails-omakase
Expand Down
Loading