Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
type_toolkit (0.0.4)
type_toolkit (0.0.5)
lint_roller
rubocop (>= 1.72.0)

Expand Down Expand Up @@ -179,7 +179,7 @@ CHECKSUMS
tapioca (0.17.10) sha256=880a682ca8314f798dd09e9f104134fbf1a713c13be51f7dd4741dd434e6471b
thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73
tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f
type_toolkit (0.0.4)
type_toolkit (0.0.5)
unicode-display_width (3.2.0) sha256=0cdd96b5681a5949cdbc2c55e7b420facae74c4aaf9a9815eee1087cb1853c42
unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f
yard (0.9.38) sha256=721fb82afb10532aa49860655f6cc2eaa7130889df291b052e1e6b268283010f
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ This gem ships with RuboCop cops that we recommend you enable for your applicati
```yml
plugins:
- rubocop-other-extension
- rubocop-type_toolkit
- type_toolkit:
require_path: rubocop-type_toolkit
```

### Cherry-picking features
Expand Down
1 change: 1 addition & 0 deletions lib/rubocop/cop/type_toolkit/plugin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# frozen_string_literal: true

require "lint_roller"
require "type_toolkit/version"

module RuboCop
module Cop
Expand Down
2 changes: 1 addition & 1 deletion lib/type_toolkit/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# frozen_string_literal: true

module TypeToolkit
VERSION = "0.0.4"
VERSION = "0.0.5"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bumping the shame version

Image

end
Loading