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 modern asset pipeline for Rails [https://github.com/rails/propshaft]
gem "propshaft"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.1"
gem "pg", "~> 1.6"
# 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 @@ -37,22 +37,22 @@
# Add HTTP asset caching/compression and X-Sendfile acceleration to Puma [https://github.com/basecamp/thruster/]
gem "thruster", require: false

#pagination

Check failure on line 40 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Layout/LeadingCommentSpace: Missing space after `#`.
gem 'kaminari'

Check failure on line 41 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.

#authentication

Check failure on line 43 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Layout/LeadingCommentSpace: Missing space after `#`.
gem 'devise'

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.

#openai access

Check failure on line 46 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Layout/LeadingCommentSpace: Missing space after `#`.
gem 'ruby-openai'

Check failure on line 47 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.

#background jobs

Check failure on line 49 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Layout/LeadingCommentSpace: Missing space after `#`.
gem 'sidekiq'

Check failure on line 50 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 'foreman'

Check failure on line 52 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.

# Load environment variables in all environments
gem 'dotenv-rails', groups: [:development, :test, :production]

Check failure on line 55 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.

# Use Active Storage variants
# gem "image_processing", "~> 1.2"
Expand Down
9 changes: 7 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,12 @@ GEM
parser (3.3.8.0)
ast (~> 2.4.1)
racc
pg (1.5.9)
pg (1.6.2)
pg (1.6.2-aarch64-linux)
pg (1.6.2-aarch64-linux-musl)
pg (1.6.2-x86_64-darwin)
pg (1.6.2-x86_64-linux)
pg (1.6.2-x86_64-linux-musl)
pp (0.6.2)
prettyprint
prettyprint (0.2.0)
Expand Down Expand Up @@ -443,7 +448,7 @@ DEPENDENCIES
jbuilder
kamal
kaminari
pg (~> 1.1)
pg (~> 1.6)
propshaft
puma (>= 5.0)
rails (~> 8.0.2)
Expand Down
Loading