Skip to content

Commit

Permalink
➕ rubocop, rspec @ latest release for local dev
Browse files Browse the repository at this point in the history
  • Loading branch information
pboling committed Dec 20, 2024
1 parent 3cc978a commit 2b26b8b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ gemspec
# See: `appraisal_root.gemfile`
gem 'rails', '>= 6.1'
gem 'pry'
gem 'rspec', '~> 3.13'
gem 'rspec-rails'
gem 'rake', '>= 13'
gem 'rubocop', '~> 1.69', '>= 1.69.2'
gem 'rubocop-packaging', '~> 0.5', '>= 0.5.2'
# Skip some bad releases of standard
gem 'standard', '>= 1.35.1', '!= 1.41.1', '!= 1.42.0'
12 changes: 12 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ PATH
specs:
betterlint (1.16.0)
rubocop (~> 1.62)
rubocop-capybara (~> 2.21)
rubocop-factory_bot (~> 2.26)
rubocop-graphql (~> 1.5)
rubocop-performance (~> 1.21)
rubocop-rails (~> 2.24)
Expand Down Expand Up @@ -190,6 +192,10 @@ GEM
regexp_parser (2.9.3)
reline (0.6.0)
io-console (~> 0.5)
rspec (3.13.0)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
rspec-mocks (~> 3.13.0)
rspec-core (3.13.2)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.3)
Expand Down Expand Up @@ -219,6 +225,10 @@ GEM
unicode-display_width (>= 2.4.0, < 4.0)
rubocop-ast (1.37.0)
parser (>= 3.3.1.0)
rubocop-capybara (2.21.0)
rubocop (~> 1.41)
rubocop-factory_bot (2.26.1)
rubocop (~> 1.61)
rubocop-graphql (1.5.4)
rubocop (>= 1.50, < 2)
rubocop-packaging (0.5.2)
Expand Down Expand Up @@ -276,7 +286,9 @@ DEPENDENCIES
pry
rails (>= 6.1)
rake (>= 13)
rspec (~> 3.13)
rspec-rails
rubocop (~> 1.69, >= 1.69.2)
rubocop-packaging (~> 0.5, >= 0.5.2)
standard (>= 1.35.1, != 1.42.0, != 1.41.1)

Expand Down
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ require "bundler/gem_tasks"

begin
require 'rubocop/rake_task'

RuboCop::RakeTask.new
rescue LoadError
task(:rubocop) do
Expand All @@ -12,8 +13,8 @@ rescue LoadError
end

begin
require 'rspec/core'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)
rescue LoadError
task(:spec) do
Expand Down

0 comments on commit 2b26b8b

Please sign in to comment.