rewind-ruby-style 1.0.10 → 2.0.0

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/rubocop.yml +10 -1
  3. metadata +49 -13
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 38a115a123314c00adbee03c6b178a362563b622083bd1b038cffdfd1da4b808
4
- data.tar.gz: 4e9fad3ffded8c08b2e0d6cda7029f725fdab0baaa4ec91827921941f053ffeb
3
+ metadata.gz: 897c36e51e6f40d8ea37a1f5d45b977bd296b4c0f5db85b2624feb76a58a9c3d
4
+ data.tar.gz: 10971f48196eb055b3c311b0718c9919d1f5944f78eb732d7f99bcbaa5a08b53
5
5
  SHA512:
6
- metadata.gz: 1b2a6a0a9fb28e442d2b285ea7070d1481fa47d73e77d71c04d6dac2de382ddc2f6b7c4e3dfc1301b7ad625af52e7f454e40ca116cd625f2c7120dc858d82609
7
- data.tar.gz: 36bd5ff9139e57cb117ee22b241098564389ed50339eafbd521c740b61a7252c34064bdb0402933a220dff0bd2cf55c808ebb7b3da7e4a811cca00afb46ef409
6
+ metadata.gz: 9119a62bc00f2e0c3beadfdf2c5f9c259665bb454d980bc7b0b78e61c33a88b95a0cd779a957ac88ea1f2d637197767cb5783e67636debe1a87b299e678c33a9
7
+ data.tar.gz: 166b94e5cd827e5b87b4995f3f417ee9ad68ae86d68911c19cb9f03dea6bcc47727c5e94820be69321aa7d3d969690863daa683d495b5b9c4355071c7c7aaf35
data/rubocop.yml CHANGED
@@ -1,6 +1,12 @@
1
+ require:
2
+ - rubocop-performance
3
+ - rubocop-rails
4
+ - rubocop-rspec
5
+
1
6
  AllCops:
2
7
  DisplayCopNames: true
3
- TargetRubyVersion: 2.6
8
+ TargetRubyVersion: 3.2.2
9
+ NewCops: enable
4
10
  StyleGuideBaseURL: https://github.com/rewindio/ruby-style-configs/
5
11
  Exclude:
6
12
  - '.ebextenstions/**/*'
@@ -82,6 +88,9 @@ Style/AsciiComments:
82
88
  Style/NumericPredicate:
83
89
  Enabled: false # This is an unsafe setting which has the potential to introduce bugs because nil == 0 is false, where nil.zero? throws an exception.
84
90
 
91
+ Style/HashSyntax:
92
+ EnforcedShorthandSyntax: either
93
+
85
94
  Lint/SuppressedException:
86
95
  AllowComments: true
87
96
 
metadata CHANGED
@@ -1,35 +1,71 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rewind-ruby-style
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.10
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rewind Devops
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-18 00:00:00.000000000 Z
11
+ date: 2024-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.85'
20
- - - "<"
19
+ version: '1.6'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rubocop-performance
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.2'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
21
39
  - !ruby/object:Gem::Version
22
- version: '0.89'
40
+ version: '1.2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rubocop-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.23'
23
48
  type: :runtime
24
49
  prerelease: false
25
50
  version_requirements: !ruby/object:Gem::Requirement
26
51
  requirements:
27
- - - ">="
52
+ - - "~>"
28
53
  - !ruby/object:Gem::Version
29
- version: '0.85'
30
- - - "<"
54
+ version: '2.23'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rubocop-rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
31
60
  - !ruby/object:Gem::Version
32
- version: '0.89'
61
+ version: '2.26'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2.26'
33
69
  description: Gem containing the config files for style chekers that corresponds to
34
70
  the implementation of the Rewind style guide for Ruby.
35
71
  email: team@rewind.io
@@ -43,7 +79,7 @@ homepage: https://github.com/rewindio/ruby-style-configs/
43
79
  licenses:
44
80
  - MIT
45
81
  metadata:
46
- source_code_uri: https://github.com/rewindio/ruby-style-configs/tree/v1.0.10
82
+ source_code_uri: https://github.com/rewindio/ruby-style-configs/tree/v2.0.0
47
83
  post_install_message:
48
84
  rdoc_options: []
49
85
  require_paths:
@@ -52,14 +88,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
52
88
  requirements:
53
89
  - - ">="
54
90
  - !ruby/object:Gem::Version
55
- version: '0'
91
+ version: 3.2.2
56
92
  required_rubygems_version: !ruby/object:Gem::Requirement
57
93
  requirements:
58
94
  - - ">="
59
95
  - !ruby/object:Gem::Version
60
96
  version: '0'
61
97
  requirements: []
62
- rubygems_version: 3.0.3
98
+ rubygems_version: 3.4.10
63
99
  signing_key:
64
100
  specification_version: 4
65
101
  summary: Rewind's style guide for Ruby.