ezcater_rubocop 0.52.7 → 0.52.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 539ee92b86a3440da6e5884eb0aaf1790c519b0ccd236a2e6826bdc47ed3db92
4
- data.tar.gz: 0d566eb617de355309c2b84bc754874fb61a2c646a9aa5948aa3b07ecfa26b1f
3
+ metadata.gz: fdb09905d411723ee6c51bf7d58f124da5c453e44b843ae4b6dd6a7f53d022b0
4
+ data.tar.gz: 0b5bfc85d3458e9d7253afab30a6fb46e88cef232d1ce464e69f0acbb396d27f
5
5
  SHA512:
6
- metadata.gz: 41f9a64c2b6d848ee5f93984fa46537d6950c9d1e904b4aab10fac0eb3f5232f6ed8ade686cf6fdec7ebaeb153309d12be93be88523b5288f31fe6e30af21efb
7
- data.tar.gz: cc42c61dc7fa7daa73178de923b08f8d2e3e87346f602723724ecc83cdfa92777b9ef0bcedddd5fe8e15bb2105a9cedcd1df023373f555efc9462c36a8f90224
6
+ metadata.gz: 6aa386230e67e633a1928574df73d038f2286c2805ccbbf3cab1b588fc3a912e9ea001f0229a08fac55594e38e2dc522ea80026d60c4717e662338d28f5d6b3a
7
+ data.tar.gz: 843e13e70d55f8d7125b28b486d9de18d2a60d8854575214b3b35889d1cf7e892ec45b7895c39b87e746759e1f87212e397f6d22d73fe5ffc3a0c5457f63ac1e
@@ -1,5 +1,8 @@
1
1
  # ezcater_rubocop
2
2
 
3
+ ## v0.52.8
4
+ - Add new configuration `rubocop_gem` for use with gems.
5
+
3
6
  ## v0.52.7
4
7
  - Enable `Style/FrozenStringLiteralComment` with the `when_needed` style.
5
8
 
data/README.md CHANGED
@@ -45,6 +45,7 @@ Further customization of RuboCop for your local project may be added to this fil
45
45
 
46
46
  - **rubocop**: Assumes RSpec is used and requires [rubocop-rspec](https://github.com/backus/rubocop-rspec).
47
47
  This configuration should be used for gems.
48
+ - **rubocop_gem**: For use in Ruby gem projects, this inherits from the **rubocop** configuration.
48
49
  - **rubocop_rails**: For Rails projects, this inherits from the **rubocop** configuration.
49
50
 
50
51
  ## Usage
@@ -0,0 +1,7 @@
1
+ inherit_from:
2
+ - ../conf/rubocop.yml
3
+
4
+ AllCops:
5
+ Exclude:
6
+ - 'vendor/bundle/**/*'
7
+ - 'gemfiles/vendor/**/*'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EzcaterRubocop
4
- VERSION = "0.52.7"
4
+ VERSION = "0.52.8"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ezcater_rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.52.7
4
+ version: 0.52.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - ezCater, Inc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-15 00:00:00.000000000 Z
11
+ date: 2018-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -122,6 +122,7 @@ files:
122
122
  - README.md
123
123
  - bin/circle_rubocop.rb
124
124
  - conf/rubocop.yml
125
+ - conf/rubocop_gem.yml
125
126
  - conf/rubocop_rails.yml
126
127
  - config/default.yml
127
128
  - ezcater_rubocop.gemspec