fablicop 1.5.0 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2fd914960f40f459282e9c8a408f1b7d0a313888f1286e0ab81392f68c0ea4e1
4
- data.tar.gz: 10e8ddfbb132085e5ece33be46b00ec7f3695ec551c8ca856f2b30152fbb196d
3
+ metadata.gz: 3009bbd7fcdc4b17292c8cf0aad70726ab589bc517761f3e6153229217780258
4
+ data.tar.gz: 70f85187231e6cc60ffe4f917c5d16f285d629e3a78bdefab0279c37de1620a9
5
5
  SHA512:
6
- metadata.gz: cdb9a76a7d9b92b240d240661abc1d6ec96f5b6caa7e81d94e586e6d9c490b07d4e3858b5eff16a7504bf03fa24c9530f05a267e7421115895c6d5991c46979a
7
- data.tar.gz: c8394f80ad72d1bde92267e925c893a8d9b0dad8cbe9244b6f3cc005be18e37891b0854207a1339b489c87dc5b8ab32d620a675bbc989fd84a8d44a977910529
6
+ metadata.gz: 7e6b3d2d17bcf9e6cd99636ce1a62b0135968c35ee0d40e401fe370d4106482139c2205a54686c86b3798f4437e338a7e94581e2f5f9b071172a975790b5caec
7
+ data.tar.gz: 7c8a089dd68490cad6ea5fa0b53f86189b171f193e93dc5760918635941ef47e0ff98c3e089cbaf04c28aa9a5961396c7a8f660eb3640551ac6f24e6ba7a0e4a
data/CHANGELOG.md CHANGED
@@ -2,7 +2,15 @@
2
2
 
3
3
  ## [Unreleased](https://github.com/Fablic/fablicop/tree/HEAD)
4
4
 
5
- [Full Changelog](https://github.com/Fablic/fablicop/compare/v1.4.1...HEAD)
5
+ [Full Changelog](https://github.com/Fablic/fablicop/compare/v1.5.0...HEAD)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Enable `Style/Documentation` [\#86](https://github.com/Fablic/fablicop/pull/86) ([yykamei](https://github.com/yykamei))
10
+
11
+ ## [v1.5.0](https://github.com/Fablic/fablicop/tree/v1.5.0) (2022-07-21)
12
+
13
+ [Full Changelog](https://github.com/Fablic/fablicop/compare/v1.4.1...v1.5.0)
6
14
 
7
15
  **Merged pull requests:**
8
16
 
@@ -51,9 +51,9 @@ Style/TrailingCommaInHashLiteral:
51
51
  Style/TrailingCommaInArguments:
52
52
  EnforcedStyleForMultiline: comma
53
53
 
54
- # We sometimes omit the top-level documentation for classes/modules.
54
+ # We learned documentation is important.
55
55
  Style/Documentation:
56
- Enabled: false
56
+ Enabled: true
57
57
 
58
58
  # We sometimes want to use `self` anyway.
59
59
  Style/RedundantSelf:
data/lib/fablicop/cli.rb CHANGED
@@ -3,6 +3,7 @@
3
3
  require 'fileutils'
4
4
 
5
5
  module Fablicop
6
+ # CLI handles command-line inputs.
6
7
  class CLI
7
8
  def self.start(args)
8
9
  action_name = retrieve_command_name(args)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Fablicop
4
- VERSION = '1.5.0'
4
+ VERSION = '1.6.0'
5
5
  end
data/lib/fablicop.rb CHANGED
@@ -3,6 +3,7 @@
3
3
  require 'fablicop/cli'
4
4
  require 'fablicop/version'
5
5
 
6
+ # Rakuma's RuboCop configuration set.
6
7
  module Fablicop
7
8
  # Your code goes here...
8
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fablicop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - tommy
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2022-07-21 00:00:00.000000000 Z
13
+ date: 2022-07-26 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rubocop