Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
aidewoode committed Aug 4, 2023
1 parent 47d1ec5 commit 639a21c
Show file tree
Hide file tree
Showing 16 changed files with 1,216 additions and 853 deletions.
2 changes: 2 additions & 0 deletions .standard.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
plugins:
- standard-rails
39 changes: 20 additions & 19 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "rails", "~> 7.0.0"

# Deliver assets for Rails
gem "propshaft", "~> 0.6.4"
gem "propshaft", "~> 0.7.0"

# Install Turbo on Rails
gem "turbo-rails", "~> 1.3.0"
gem "turbo-rails", "~> 1.4.0"

# Install Stimulus on Rails
gem "stimulus-rails", "~> 1.0.2"
gem "stimulus-rails", "~> 1.2.1"

# Bundle and process CSS in Rails
gem "cssbundling-rails", "~> 1.1.0"
gem "cssbundling-rails", "~> 1.2.0"

# Bundle and transpile JavaScript in Rails
gem "jsbundling-rails", "~> 1.0.0"
gem "jsbundling-rails", "~> 1.1.2"

# Use Puma as the app server
gem "puma", "~> 6.0.2"
gem "puma", "~> 6.3.0"

# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 2.11.5"
Expand All @@ -29,50 +29,51 @@ gem "jbuilder", "~> 2.11.5"
gem "wahwah", "~> 1.4.0"

# Use sidekiq for backgroud job
gem "sidekiq", "~> 7.0.0"
gem "sidekiq", "~> 7.1.2"

# Pagination
gem "pagy", "~> 5.6.6"
gem "pagy", "~> 6.0.0"

# Use redis on cache and sidekiq
gem "redis", "~> 4.0"

# For image attachment
gem "carrierwave", "~> 2.2.0"
gem "carrierwave", "~> 3.0.0"

# For API request
gem "httparty", "~> 0.17.0"
gem "httparty", "~> 0.21.0"

# For browser detection
gem "browser", "~> 2.6.1", require: "browser/browser"
gem "browser", "~> 5.3.1"

# For searching
gem "ransack", "~> 3.2.1"

# For sortable list
gem "acts_as_list", "~> 1.0.2"
gem "acts_as_list", "~> 1.1.0"

# For authentication
gem "authlogic", "~> 6.4.1"
gem "bcrypt", "~> 3.1.11"

# For sync on library changes
gem "listen", "~> 3.7.1"
gem "listen", "~> 3.8.0"

# For postgresql database adapter
gem "pg", "~> 1.3.2"

# For sqlite database adapter
gem "sqlite3", "~> 1.5.0"
gem "sqlite3", "~> 1.6.3"

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", "~> 1.10.3", require: false
gem "bootsnap", "~> 1.16.0", require: false

group :development, :test do
gem "standard", "~> 1.7"
gem "standard", "~> 1.25.0"
gem "standard-rails"
gem "erb_lint", "~> 0.4.0", require: false
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[mri mingw x64_mingw]
Expand All @@ -88,10 +89,10 @@ group :development do
end

group :test do
gem "capybara", "~> 3.38.0"
gem "capybara", "~> 3.39.0"
gem "cuprite", "~> 0.14.3"
gem "webmock", "~> 3.14.0", require: false
gem "simplecov", "~> 0.21.2", require: false
gem "webmock", "~> 3.18.0", require: false
gem "simplecov", "~> 0.22.0", require: false
gem "simplecov-lcov", "~> 0.8.0", require: false
end

Expand Down

0 comments on commit 639a21c

Please sign in to comment.