sashite-rubocop 1.0.0.beta1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -10
  3. data/config/rubocop.yml +4 -0
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7f1d8dc75c4c174b851cd9816da468a7d763082b56174d32e5f49488831812f5
4
- data.tar.gz: ad3e3c99cc46b819bba03d0d74c31fefe1e9bab03ed13d474deae40ad8344e2c
3
+ metadata.gz: df91c5f084065c924f82730b32a005ef3a736bf1c5b6aa19c76ce6461528154a
4
+ data.tar.gz: c4c8700524f3fe996db31ffdf2f9ece1fe66815e58aed896f5c07d29c94c6a59
5
5
  SHA512:
6
- metadata.gz: 695cc834a33779a25f6a00a943527ed06cce9a9d022cbcdbe37497933e2e3cab6074a18d983954731ae42c56d36f1cde3ace6664890f8914be7db9482ef9f06f
7
- data.tar.gz: 5f49e002bd223d934f15c45a25a422fb8ca8cab2160b6619ea77a6d6990d91908df248ce7ae9d15f6009805a39a6a1dd8a2804783f9304198da59cebd6e1f5e1
6
+ metadata.gz: 8c9d7c5a4dd8deb3e4749b34acc14bf94c2692dd76b780c20e8e1f358cc4ad2543d4bd0b9aaa289dcb4eed573c4ab844ce32110b6c02e134c76ae83333f413a0
7
+ data.tar.gz: d00618b954b12e3f0f6dc98b17a54792ce595309675f6e349e1bf45624cc29bdb6df89708df578b43b15c5e756df74ca1fc5259c8ff382d0140c2954273a7207
data/README.md CHANGED
@@ -14,14 +14,14 @@ At Sashité, many of our services are built on Ruby.
14
14
 
15
15
  To keep the code base consistent across projects, we have collected here the common style rules we use to improve readability and maintainability.
16
16
 
17
- ![A chessboard, with a cop, a pawn and some Ruby](https://github.com/sashite/sashite-rubocop/raw/main/img/a-chessboard-with-a-cop-a-pawn-and-some-ruby.svg)
17
+ ![A chessboard, with a cop, a pawn and some Ruby](https://github.com/sashite/sashite-rubocop.rb/raw/main/img/a-chessboard-with-a-cop-a-pawn-and-some-ruby.svg)
18
18
 
19
19
  ## Installation
20
20
 
21
21
  Add this line to your application's Gemfile:
22
22
 
23
23
  ```ruby
24
- gem "sashite-rubocop", ">= 1.0.0.beta1"
24
+ gem "sashite-rubocop"
25
25
  ```
26
26
 
27
27
  And then execute:
@@ -33,7 +33,7 @@ bundle install
33
33
  Or install it yourself as:
34
34
 
35
35
  ```sh
36
- gem install sashite-rubocop --pre
36
+ gem install sashite-rubocop
37
37
  ```
38
38
 
39
39
  ## Usage
@@ -73,13 +73,13 @@ Add these lines to your `.rubocop.yml`:
73
73
  ```yaml
74
74
  # .rubocop.yml
75
75
  inherit_from:
76
- - https://raw.githubusercontent.com/sashite/sashite-rubocop/main/config/rubocop.yml
77
- - https://raw.githubusercontent.com/sashite/sashite-rubocop/main/config/rubocop/performance.yml
78
- - https://raw.githubusercontent.com/sashite/sashite-rubocop/main/config/rubocop/rails.yml
79
- - https://raw.githubusercontent.com/sashite/sashite-rubocop/main/config/rubocop/rake.yml
80
- - https://raw.githubusercontent.com/sashite/sashite-rubocop/main/config/rubocop/rspec.yml
81
- - https://raw.githubusercontent.com/sashite/sashite-rubocop/main/config/rubocop/sequel.yml
82
- - https://raw.githubusercontent.com/sashite/sashite-rubocop/main/config/rubocop/thread_safety.yml
76
+ - https://raw.githubusercontent.com/sashite/sashite-rubocop.rb/main/config/rubocop.yml
77
+ - https://raw.githubusercontent.com/sashite/sashite-rubocop.rb/main/config/rubocop/performance.yml
78
+ - https://raw.githubusercontent.com/sashite/sashite-rubocop.rb/main/config/rubocop/rails.yml
79
+ - https://raw.githubusercontent.com/sashite/sashite-rubocop.rb/main/config/rubocop/rake.yml
80
+ - https://raw.githubusercontent.com/sashite/sashite-rubocop.rb/main/config/rubocop/rspec.yml
81
+ - https://raw.githubusercontent.com/sashite/sashite-rubocop.rb/main/config/rubocop/sequel.yml
82
+ - https://raw.githubusercontent.com/sashite/sashite-rubocop.rb/main/config/rubocop/thread_safety.yml
83
83
  ```
84
84
 
85
85
  ## Versioning
data/config/rubocop.yml CHANGED
@@ -1,4 +1,8 @@
1
1
  AllCops:
2
+ Exclude:
3
+ - vendor/**/*.rb
4
+ - vendor/bundle/**/*
5
+
2
6
  NewCops: enable
3
7
 
4
8
  Layout/HashAlignment:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sashite-rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.beta1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cyril Kato
@@ -240,9 +240,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
240
240
  version: 2.7.0
241
241
  required_rubygems_version: !ruby/object:Gem::Requirement
242
242
  requirements:
243
- - - ">"
243
+ - - ">="
244
244
  - !ruby/object:Gem::Version
245
- version: 1.3.1
245
+ version: '0'
246
246
  requirements: []
247
247
  rubygems_version: 3.1.6
248
248
  signing_key: