Skip to content

Commit

Permalink
Update development dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bensheldon committed Jul 5, 2024
1 parent 402bef7 commit 9f34a5f
Show file tree
Hide file tree
Showing 18 changed files with 261 additions and 243 deletions.
4 changes: 4 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ require:
- rubocop-performance
- rubocop-rails
- rubocop-rspec
- rubocop-rspec_rails

inherit_mode:
merge:
Expand All @@ -29,6 +30,9 @@ AllCops:
- lib/good_job/sd_notify.rb
NewCops: enable

Capybara/ClickLinkOrButtonStyle:
Enabled: false

Gemspec/DevelopmentDependencies:
Enabled: false

Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.1
3.3.3
2 changes: 1 addition & 1 deletion .yard_support.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class KramdownGfmDocument < Kramdown::Document
def initialize(source, options = {})
options[:input] = 'GFM' unless options.key?(:input)
super(source, options)
super
end
end

Expand Down
25 changes: 14 additions & 11 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ruby_version_path = File.join(File.dirname(__FILE__), '.ruby-version')
if File.exist?(ruby_version_path)
# .ruby-version may not always contain a complete/valid 3+ identifier Ruby version
ruby_version_contents = File.read(ruby_version_path).strip
ruby(ruby_version_contents) if ruby_version_contents.match?(%r{\d+\.\d+\.\d+})
ruby(ruby_version_contents) if ruby_version_contents.match?(%r{\A\d+\.\d+\.\d+})
end
# Declare your gem's dependencies in good_job.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
Expand All @@ -26,6 +26,7 @@ gem 'nokogiri'
gem 'pg', platforms: [:mri, :mingw, :x64_mingw]
gem 'rack', '~> 2.2'
gem 'rails'
gem 'rspec-rails', github: "rspec/rspec-rails", branch: "main"

platforms :ruby do
gem "bootsnap"
Expand All @@ -48,16 +49,18 @@ platforms :ruby do
end

group :lint do
gem "easy_translate"
gem "erb_lint"
gem "i18n-tasks"
gem "mdl"
gem "rubocop"
gem "rubocop-performance"
gem "rubocop-rails"
gem "rubocop-rspec"
gem "sorbet"
gem "sorbet-runtime"
gem "easy_translate", require: false
gem "erb_lint", require: false
gem "i18n-tasks", require: false
gem "mdl", require: false
gem "rubocop", require: false
gem "rubocop-capybara", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
gem "rubocop-rspec", require: false
gem "rubocop-rspec_rails", require: false
gem "sorbet", require: false
gem "sorbet-runtime", require: false
gem "spoom", require: false
gem "tapioca", require: false
end
Expand Down
Loading

0 comments on commit 9f34a5f

Please sign in to comment.