Skip to content

Commit

Permalink
Update development dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bensheldon committed Jun 6, 2024
1 parent 402bef7 commit 0d3ca3c
Show file tree
Hide file tree
Showing 17 changed files with 226 additions and 214 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 .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
2 changes: 1 addition & 1 deletion 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 Down
Loading

0 comments on commit 0d3ca3c

Please sign in to comment.