standard 0.4.4 → 0.4.5

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: 52b7339d067d0811936bea5389c8b39efc85924dec8126a6f75ad1c673e5901e
4
- data.tar.gz: 215b552f83cf2bb2a29e2771ccdc3eb64a8a9c939afcbb716bb185448e8f2fc0
3
+ metadata.gz: 66a00109a56907165a97df2ceba38b8575b697890232bc295311dcb9d2adae39
4
+ data.tar.gz: 398c841fad077613fe1ddfadb000ccafe3bb313243846513c857303e5444d648
5
5
  SHA512:
6
- metadata.gz: 7f91b781300a5bf99b633a56dc5408abf4af8089ed744b8b9b639f6869b36eb0f3ad666f98679f8f28733a354c97dd2834caa4921d184182979ec8314b9e48f6
7
- data.tar.gz: 6cb189748d42164961d0e3af9340d74be4552db45ccbe1dad3ab125a27db36cc779025db04689eed1d2ba32361fb070222a9de48bbdc017bb3fcf4c54e26fa81
6
+ metadata.gz: 1b0300c97dd07f13c0242af3e5276fc48a89abb12b16ec6e22921b5d1dcf3f3112a5adae5ddb976dbed76b3f9438d5256743b7784335d560a3543c88ff20fe00
7
+ data.tar.gz: 6e851d45878a4705f480c12a4942b962de3034c1c2b8b7c96b336268ec678b3f4fea4658ace3639a03cc1ee3b0e83205da38f8bb9ffdf0f50f72e97a3e9dfb54
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.5
4
+
5
+ * Disable `Naming/AsciiIdentifiers` for the same reason as mentioned below in
6
+ 0.4.4 (specifically to allow programs written in non-Latin languages to define
7
+ identifiers)
8
+
3
9
  ## 0.4.4
4
10
 
5
11
  * Disable `Naming/MethodName` cop. While `snake_case` is the conventional way to
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- standard (0.4.4)
4
+ standard (0.4.5)
5
5
  rubocop (~> 0.83.0)
6
6
  rubocop-performance (~> 1.5.2)
7
7
 
@@ -537,9 +537,6 @@ Lint/Void:
537
537
  Migration/DepartmentName:
538
538
  Enabled: true
539
539
 
540
- Naming/AsciiIdentifiers:
541
- Enabled: true
542
-
543
540
  Naming/BinaryOperatorParameterName:
544
541
  Enabled: true
545
542
 
@@ -1,3 +1,3 @@
1
1
  module Standard
2
- VERSION = Gem::Version.new("0.4.4")
2
+ VERSION = Gem::Version.new("0.4.5")
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.4
4
+ version: 0.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Searls