rubocop-ruby 1.0.0 → 1.0.1

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: 3726caf88c44ebdb4dc777aa10bf9b6bb95d6cfe46baa1f627808288e6d82a71
4
- data.tar.gz: 55456508926d1f3f42eb9540724692a01ccc4a03cac6cf0a377319a8755c3d50
3
+ metadata.gz: b17d2f52a2c2e2b602a89ae4a1d10fdb302f6ce3c2aa113028fe075684b48833
4
+ data.tar.gz: 31e9cbadb55dca38efd1eb2d0ab0e7be5b9033b0660d63074f375060c5d6df1e
5
5
  SHA512:
6
- metadata.gz: 7c8b035e17463ea3c959111ea0304c6d062208a4d1eb2abe0cf17f3f0fc7c9583a79806f7d5d7fd8b00d584050a2d4fba976e900c423d6d005d21af35dbda9ee
7
- data.tar.gz: 72b8caf988812761a27ebba3cc12aacad94e50d71bcf7335fd1b94383547c23f007b24d2dcd944111cbeb7155ee4779ffe42245a5e5f54f6f97a3b6fa329a6a8
6
+ metadata.gz: c1afdc4b085832289358fe75d4f26602cef2f7482aa6352e37884419efded2ae34d2cbfeea136533bc3f8e52a48946306e580ed546373df1e04ce79c0b3be997
7
+ data.tar.gz: 392a780a124a7f0a84df90aa8632f25fdebef972ec4f2ebcb5db86ca1b7b74b053765481a023da0842ee8b3f3a0d53af9656a064a8b25917003e1c7b1a4cedad
data/.rubocop.yml CHANGED
@@ -1 +1,17 @@
1
- inherit_from: rubocop_ruby.yml
1
+ require:
2
+ - rubocop-rspec
3
+ - rubocop-performance
4
+
5
+ AllCops:
6
+ NewCops: enable
7
+
8
+ Style/StringLiterals:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Style/StringLiteralsInInterpolation:
13
+ Enabled: true
14
+ EnforcedStyle: double_quotes
15
+
16
+ Layout/LineLength:
17
+ Max: 120
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rubocop-ruby (1.0.0)
4
+ rubocop-ruby (1.0.1)
5
5
  rubocop (~> 1.44.1)
6
6
  rubocop-performance
7
7
  rubocop-rspec
data/rubocop-ruby.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "rubocop-ruby"
5
- spec.version = "1.0.0"
5
+ spec.version = "1.0.1"
6
6
  spec.authors = ["k0va1"]
7
7
  spec.email = ["al3xander.koval@gmail.com"]
8
8
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - k0va1
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-30 00:00:00.000000000 Z
11
+ date: 2023-07-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -67,7 +67,6 @@ files:
67
67
  - README.md
68
68
  - Rakefile
69
69
  - rubocop-ruby.gemspec
70
- - rubocop_ruby.yml
71
70
  homepage: https://github.com/k0va1/rubocop-ruby
72
71
  licenses:
73
72
  - MIT
data/rubocop_ruby.yml DELETED
@@ -1,17 +0,0 @@
1
- require:
2
- - rubocop-rspec
3
- - rubocop-performance
4
-
5
- AllCops:
6
- NewCops: enable
7
-
8
- Style/StringLiterals:
9
- Enabled: true
10
- EnforcedStyle: double_quotes
11
-
12
- Style/StringLiteralsInInterpolation:
13
- Enabled: true
14
- EnforcedStyle: double_quotes
15
-
16
- Layout/LineLength:
17
- Max: 120