autocop 0.2.4 → 0.2.5

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: 70f94c9116926b33432095fd097c2bcb462be5eed0fab397d0297cdda1316886
4
- data.tar.gz: 3ab232a7c46643117c56e5399ffa78a3dd79777a7da09d4c0cd0df08a33f08ec
3
+ metadata.gz: 449629860f003c90d914496e6aa9be1a39041841b36db664e61f42d202018ac7
4
+ data.tar.gz: 42d7c023d30fede803b42e02eb738ae9f4fefddfbb662904711370247bb1581f
5
5
  SHA512:
6
- metadata.gz: c062ea4a466b28944a1fee5424bf1a005087e81683c1bc7ccdd890ffe2c0399c6c2e6b509c18c1713c78a371f9b3d2a867c7f6e2037260ce2785efa7c9b6283a
7
- data.tar.gz: e796cb2f8147ce9aec9101fdf723021c2ca7113f9d63cbd34d0167a0337f958d1355941407d55e74ce261aa344d1cc008ad59577be8e66fb54c4bc20985f74a5
6
+ metadata.gz: ca753aabb42322041e0c8d346fc2b33d568d92d4788687069ff27c1596feb097d1e1a705016d4ea8fa99f64dee9c169075c746473d0948d0e3810196d5113ac9
7
+ data.tar.gz: e582406f8599ddf379f6821ce415169a194be3618851374f0788485662b5fb0bae5636e9cd7aaa5e70dc95cccba9693d81edf89d51ca3c3f05921cc1a23a9cbe
data/.autocop-rubocop.yml CHANGED
@@ -994,7 +994,7 @@ Layout/FirstParameterIndentation:
994
994
  - special_for_inner_method_call_in_parentheses
995
995
  IndentationWidth:
996
996
 
997
- Style/FlipFlop:
997
+ Lint/FlipFlop:
998
998
  Description: Checks for flip flops
999
999
  StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-flip-flops
1000
1000
  Enabled: true
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## v0.2.5 - 2019-03-05
2
+
3
+ - Fix `Style/FlipFlop` to `Lint/FlipFlop`
4
+
1
5
  ## v0.2.4 - 2018-12-19
2
6
 
3
7
  - Change styling for signal exception to be only raise (@tlubz)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- autocop (0.2.4)
4
+ autocop (0.2.5)
5
5
  rubocop (>= 0.52.1)
6
6
  rubocop-rspec (>= 1.22.1)
7
7
 
@@ -11,15 +11,16 @@ GEM
11
11
  ast (2.4.0)
12
12
  coderay (1.1.2)
13
13
  diff-lcs (1.3)
14
- jaro_winkler (1.5.1)
14
+ jaro_winkler (1.5.2)
15
15
  method_source (0.9.2)
16
- parallel (1.12.1)
17
- parser (2.5.3.0)
16
+ parallel (1.14.0)
17
+ parser (2.6.0.0)
18
18
  ast (~> 2.4.0)
19
19
  powerpack (0.1.2)
20
20
  pry (0.12.2)
21
21
  coderay (~> 1.1.0)
22
22
  method_source (~> 0.9.0)
23
+ psych (3.1.0)
23
24
  rainbow (3.0.0)
24
25
  rake (12.3.2)
25
26
  rspec (3.8.0)
@@ -35,18 +36,19 @@ GEM
35
36
  diff-lcs (>= 1.2.0, < 2.0)
36
37
  rspec-support (~> 3.8.0)
37
38
  rspec-support (3.8.0)
38
- rubocop (0.61.1)
39
+ rubocop (0.65.0)
39
40
  jaro_winkler (~> 1.5.1)
40
41
  parallel (~> 1.10)
41
42
  parser (>= 2.5, != 2.5.1.1)
42
43
  powerpack (~> 0.1)
44
+ psych (>= 3.1.0)
43
45
  rainbow (>= 2.2.2, < 4.0)
44
46
  ruby-progressbar (~> 1.7)
45
47
  unicode-display_width (~> 1.4.0)
46
- rubocop-rspec (1.30.1)
48
+ rubocop-rspec (1.32.0)
47
49
  rubocop (>= 0.60.0)
48
50
  ruby-progressbar (1.10.0)
49
- unicode-display_width (1.4.0)
51
+ unicode-display_width (1.4.1)
50
52
 
51
53
  PLATFORMS
52
54
  ruby
@@ -1,3 +1,3 @@
1
1
  module Autocop
2
- VERSION = '0.2.4'.freeze
2
+ VERSION = '0.2.5'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Autolist Engineering
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-12-19 00:00:00.000000000 Z
11
+ date: 2019-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop