easy_style 0.1.3 → 0.1.4

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: 87415e5fc63a235e70fe7a7ff277acbde096c5e5be031e05e05076428ba08aa8
4
- data.tar.gz: f0cdf0baf4051eeb5ed4b8738d59b50d7c0c4bc91180c552ed082b910b569558
3
+ metadata.gz: 35d7f928fb7dae6d5f4b6a52d72bbf8b8069a26ff1b63bdc6d771cb681585c05
4
+ data.tar.gz: 8fe6d81e51c0f76c01f6006694d80688d6adc9b1e2b2568d5c12a40af6e4c95e
5
5
  SHA512:
6
- metadata.gz: 33544bde1448703324159dfa0e0b079dda79c58dfe1d97d44f72182d706003b9c11a7d5496ce31ac7ed3417a67b897e0c751d6a5e5b2adda3ddb7896d8b3e318
7
- data.tar.gz: 394088274a10c225383c919ce95ba4b501665c485224d49838bdf4fa8c02f3103657d5fef389d352335eb7bc2470e673f325aac725a6459a9dfbaf502c45f189
6
+ metadata.gz: 1e6b78f6c9b8bba4aed125489b40f11e695c79364fdb50c492d2544409bbdfc8be66af6e930337ad01ffba016eb2d83d19b36b72586e3fa758532667bcbaff28
7
+ data.tar.gz: 9823ba29e609adc76ebd7f9794e330e8ff412ed1c98d5833ba4acecfbd81bcd97eada3c072cb8014d437e3219ab7d29d454b575e797fef29c97f596f89d24510
data/README.md CHANGED
@@ -9,7 +9,7 @@ TODO: Delete this and the text above, and describe your gem
9
9
  Add this line to your application's Gemfile:
10
10
 
11
11
  ```ruby
12
- gem 'easy_style'
12
+ gem 'easy_style', group: %i[development]
13
13
  ```
14
14
 
15
15
  And then execute:
@@ -22,7 +22,16 @@ Or install it yourself as:
22
22
 
23
23
  ## Usage
24
24
 
25
- TODO: Write usage instructions here
25
+ In your `.rubocop.yml` file:
26
+ ```yaml
27
+ inherit_gem:
28
+ easy_style: default.yml
29
+ ```
30
+
31
+ Generate "todo" file is recommended:
32
+ ```bash
33
+ bundle exec rubocop --auto-gen-config --auto-gen-only-exclude --exclude-limit 10000
34
+ ```
26
35
 
27
36
  ## Development
28
37
 
data/default.yml CHANGED
@@ -49,6 +49,8 @@ Style/MutableConstant:
49
49
  Enabled: false
50
50
  Style/NegatedIf:
51
51
  Enabled: false
52
+ Style/QuotedSymbols:
53
+ Enabled: false
52
54
  Style/StringLiterals:
53
55
  Enabled: false
54
56
  Style/TrailingCommaInHashLiteral:
@@ -1,5 +1,5 @@
1
1
  module EasyStyle
2
2
 
3
- VERSION = '0.1.3'
3
+ VERSION = '0.1.4'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Easy Software Ltd
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-05-19 00:00:00.000000000 Z
11
+ date: 2021-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop-rails