Skip to content

Commit

Permalink
(chore) housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
luizkowalski committed Apr 29, 2024
1 parent 578c058 commit adb5b4a
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# exclude:
# - gemfile: gemfiles/Gemfile-rails-6-0
# ruby: '3.2'
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }}
steps:
- uses: actions/checkout@v4
Expand Down
14 changes: 8 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gemspec

gem "activerecord", "< 8" # needed for app_test test case
gem "minitest-reporters", "~> 1.6"
gem "rubocop", "~> 1.60"
gem "rubocop-minitest", "~> 0.34"
gem "rubocop-performance", "~> 1.20"
gem "rubocop-thread_safety", "~> 0.5"
gem "sqlite3", "~> 1.7"
gem "sqlite3", "1.7.3"

gem "minitest-reporters"

gem "rubocop"
gem "rubocop-minitest"
gem "rubocop-performance"
gem "rubocop-thread_safety"
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

# Be sure to restart your server when you modify this file.

# ActiveSupport::Reloader.to_prepare do
Expand Down
1 change: 1 addition & 0 deletions test/dummy/config/initializers/content_security_policy.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

# Be sure to restart your server when you modify this file.

# Define an application-wide content security policy
Expand Down
1 change: 1 addition & 0 deletions test/dummy/config/initializers/inflections.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

# Be sure to restart your server when you modify this file.

# Add new inflection rules using the following format. Inflections
Expand Down
1 change: 1 addition & 0 deletions test/dummy/config/initializers/mime_types.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

# Be sure to restart your server when you modify this file.

# Add new mime types for use in respond_to blocks:
Expand Down
1 change: 1 addition & 0 deletions test/dummy/config/initializers/permissions_policy.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# frozen_string_literal: true

# Define an application-wide HTTP permissions policy. For further
# information see https://developers.google.com/web/updates/2018/06/feature-policy
#
Expand Down

0 comments on commit adb5b4a

Please sign in to comment.