-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The new gemwork gem is my attempt at a commonized gem framework. This includes e.g. style guide settings as well as rake files for running them, etc. Gemwork is just getting started. Update RuboCop config to source from gemwork gem instead of the now no-longer existing pdobb-style gem.
- Loading branch information
Paul DobbinSchmaltz
committed
Nov 25, 2023
1 parent
c105a5f
commit e1d7c51
Showing
9 changed files
with
18 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,6 @@ | |
/coverage/ | ||
/doc/ | ||
/pkg/ | ||
/spec/reports/ | ||
/tmp/ | ||
.byebug_history | ||
*.gem | ||
|
||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
# Load Rubocop plugins. | ||
require: | ||
- rubocop-rake | ||
- rubocop-minitest | ||
- rubocop-performance | ||
|
||
inherit_gem: | ||
pdobb-style: .rubocop.yml | ||
gemwork: lib/rubocop/.rubocop.yml | ||
|
||
AllCops: | ||
TargetRubyVersion: 2.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# frozen_string_literal: true | ||
|
||
# Load additional tasks defined by Gemwork. | ||
Gem::Specification.find_by_name("gemwork").tap do |gemspec| | ||
Rake.load_rakefile("#{gemspec.gem_dir}/lib/tasks/Rakefile") | ||
end |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.