rubocop-pragmatic 0.1.0 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6bbec56c309181b334d189a7d5fc2a61c4ff8a167cab2747cb57593136043f1c
4
- data.tar.gz: de407bdd2ca000d06d332433067619f2d63cb21986a340521aafcf8aee216e76
3
+ metadata.gz: 3dbb0303ed4c11f20ae37061282fb7aa34729f69514cc65c8c66160a9b5d8155
4
+ data.tar.gz: f75d045c9b9872472c387cc3b17a9e0e4bb1d893736868bf1b439fffeae557b9
5
5
  SHA512:
6
- metadata.gz: 6cf77fdfc1733b5fea10741ea2267f7b4ee3424c6fe9700e6c291dd44d451c1430106d57d1a721e78f57097879d5ed379b38558f8c4657b69fb83a933ff0b772
7
- data.tar.gz: 8827f6d09a5edcadca169b7c56aad71731fd4fca357c72f195e76f9adbd7ff85ee8a6216c56fdf6b6ef20e334eecb91cd5cb5e56f3c5e6d85dc8d4cb009d98ff
6
+ metadata.gz: feb48589d5ec472f1b2cd86a15581a317163c9f383001de8fb5e4d038ab9351c5b1bd2770a27b2af93b1511d482e48cbd472f80306da0afc68d3797b74682412
7
+ data.tar.gz: 3c8ef85572cffb12a328b217cc6fb4ce0b474675cc0716677938ae3aa7a71dbc3d1ba71c51e233a152a3500b8ed38ce28b0249e47846d26ffa0df6a47fb62852
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Pragmatic Ruby Styling for Projects
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/rubocop-pragmatic.svg)](https://badge.fury.io/rb/rubocop-pragmatic) [![CI](https://github.com/rmm5t/rubocop-pragmatic/actions/workflows/ci.yml/badge.svg)](https://github.com/rmm5t/rubocop-pragmatic/actions/workflows/ci.yml)
4
+
3
5
  ## Installation
4
6
 
5
7
  ```ruby
@@ -1,5 +1,5 @@
1
1
  module Rubocop
2
2
  module Pragmatic
3
- VERSION = "0.1.0".freeze
3
+ VERSION = "0.2.0".freeze
4
4
  end
5
5
  end
data/rails.yml CHANGED
@@ -1,7 +1,9 @@
1
1
  inherit_from:
2
2
  - ruby.yml
3
3
  - rubocop-capybara.yml
4
+ - rubocop-erb.yml
4
5
  - rubocop-factory_bot.yml
6
+ - rubocop-haml.yml
5
7
  - rubocop-rails.yml
6
8
 
7
9
  inherit_mode:
data/rubocop-erb.yml ADDED
@@ -0,0 +1,7 @@
1
+ plugins:
2
+ - rubocop-erb
3
+
4
+ # ----------------------------------------
5
+
6
+ Erb:
7
+ Severity: convention
data/rubocop-haml.yml ADDED
@@ -0,0 +1,7 @@
1
+ plugins:
2
+ - rubocop-haml
3
+
4
+ # ----------------------------------------
5
+
6
+ Haml:
7
+ Severity: convention
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-pragmatic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan McGeary
@@ -123,6 +123,20 @@ dependencies:
123
123
  - - "~>"
124
124
  - !ruby/object:Gem::Version
125
125
  version: '2.22'
126
+ - !ruby/object:Gem::Dependency
127
+ name: rubocop-erb
128
+ requirement: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - "~>"
131
+ - !ruby/object:Gem::Version
132
+ version: '0.7'
133
+ type: :runtime
134
+ prerelease: false
135
+ version_requirements: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - "~>"
138
+ - !ruby/object:Gem::Version
139
+ version: '0.7'
126
140
  - !ruby/object:Gem::Dependency
127
141
  name: rubocop-factory_bot
128
142
  requirement: !ruby/object:Gem::Requirement
@@ -137,6 +151,20 @@ dependencies:
137
151
  - - "~>"
138
152
  - !ruby/object:Gem::Version
139
153
  version: '2.28'
154
+ - !ruby/object:Gem::Dependency
155
+ name: rubocop-haml
156
+ requirement: !ruby/object:Gem::Requirement
157
+ requirements:
158
+ - - "~>"
159
+ - !ruby/object:Gem::Version
160
+ version: '0.3'
161
+ type: :runtime
162
+ prerelease: false
163
+ version_requirements: !ruby/object:Gem::Requirement
164
+ requirements:
165
+ - - "~>"
166
+ - !ruby/object:Gem::Version
167
+ version: '0.3'
140
168
  - !ruby/object:Gem::Dependency
141
169
  name: rubocop-rails
142
170
  requirement: !ruby/object:Gem::Requirement
@@ -165,8 +193,10 @@ files:
165
193
  - lib/rubocop/pragmatic/version.rb
166
194
  - rails.yml
167
195
  - rubocop-capybara.yml
196
+ - rubocop-erb.yml
168
197
  - rubocop-factory_bot.yml
169
198
  - rubocop-faker.yml
199
+ - rubocop-haml.yml
170
200
  - rubocop-md.yml
171
201
  - rubocop-minitest.yml
172
202
  - rubocop-packaging.yml