rfix 1.0.7.pre.65 → 1.0.7.pre.66
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 +4 -4
- data/lib/rfix/extensions/extensions.rb +1 -1
- data/lib/rfix/git_helper.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ba09b69185ab60b9f686736e5c9e7fb31f304076e34da632c680d086cc2b2ad
|
|
4
|
+
data.tar.gz: 0cec0d7801f62c92660cfada322c883aded3ea5a5a2912fafcc8b25d106847ce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 774c1bef50501190800a11c878d887071c3a531b32605d05eb1d92e6f7d3b5ba7a757801dfb2d6cf90e11c223766f24a80ec6d1ce4a33a6785e5064893a8096a
|
|
7
|
+
data.tar.gz: 46872dec584d09199205210c3a13f3f278164702407acfe7833f58280307b2f27888a8d705d31901be73cb280689ee7c8c87f74a0f213ec5c2c30c53b0b5bca1
|
|
@@ -16,7 +16,7 @@ module Rfix::Ext
|
|
|
16
16
|
# Called _after_ @source has been 'auto fixed' by Rubocop
|
|
17
17
|
def check_for_infinite_loop(source, offences)
|
|
18
18
|
# rubocop:disable Style/Semicolon
|
|
19
|
-
Rfix.refresh!(source); super
|
|
19
|
+
Rfix.refresh!(source); super
|
|
20
20
|
# rubocop:enable Style/Semicolon
|
|
21
21
|
end
|
|
22
22
|
end
|
data/lib/rfix/git_helper.rb
CHANGED