art-rubocop 1.0.2 → 1.0.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: e8563ae8b938f7fae943f61a1f166aba01a04689442e4d480cb6a51d77bda657
4
- data.tar.gz: 1701442e633b33af42bbf019ac97018744e0b4b3c07739ebd7c714a7bd7dc21d
3
+ metadata.gz: 4498073f5ee57c0b84e75a2b517de2c170d6d8e0170cfc31eba7c0db1a554092
4
+ data.tar.gz: c2d75068c6db3745a9acfd9bc1170e35f8f58f8878c63501f4eb7863fc014501
5
5
  SHA512:
6
- metadata.gz: 881e4e68a7c96b2c84995768a9bba49554d526a42d7deca1a935ec2694784db71748f9ef387e936900c8db92cc5050542d1d3bf2d9bc5dd9d56147246591c715
7
- data.tar.gz: 698bf499d51715bd222924aae84843260e68a19470cc234eb25e51e9375b4454acb547e48b820fe6fc209d636524ade8b01433787e4e1828cb6eb7a3a449ab69
6
+ metadata.gz: 56ef1a0c2c3d5347e976332a54a8371adee7f33b52ff245dabe63069a66ee3d0938b99a1af6262cc78483e927ed0483908a8aaad40206f07420d75c60d914485
7
+ data.tar.gz: b376b99cd85c2acbca1012e178d6c8132dbfca8bea929454d52e494cbe6e106af54c8e0d65735c9ec9bfcc88490508c21e9e5754c38ffbcfad2216585dd6bbca
@@ -0,0 +1,6 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "bundler"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "daily"
data/.rubocop.yml ADDED
@@ -0,0 +1 @@
1
+ inherit_from: default.yml
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- art-rubocop (1.0.2)
4
+ art-rubocop (1.0.4)
5
5
  rubocop (~> 1.26, >= 1.26.1)
6
6
  rubocop-performance (~> 1.13, >= 1.13.3)
7
7
  rubocop-rails (~> 2.14, >= 2.14.2)
@@ -10,53 +10,52 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- activesupport (6.1.5)
13
+ activesupport (7.0.3)
14
14
  concurrent-ruby (~> 1.0, >= 1.0.2)
15
15
  i18n (>= 1.6, < 2)
16
16
  minitest (>= 5.1)
17
17
  tzinfo (~> 2.0)
18
- zeitwerk (~> 2.3)
19
18
  ast (2.4.2)
20
19
  concurrent-ruby (1.1.10)
21
20
  i18n (1.10.0)
22
21
  concurrent-ruby (~> 1.0)
23
22
  minitest (5.15.0)
24
23
  parallel (1.22.1)
25
- parser (3.1.1.0)
24
+ parser (3.1.2.0)
26
25
  ast (~> 2.4.1)
27
26
  rack (2.2.3)
28
27
  rainbow (3.1.1)
29
28
  rake (13.0.6)
30
- regexp_parser (2.2.1)
29
+ regexp_parser (2.4.0)
31
30
  rexml (3.2.5)
32
- rubocop (1.26.1)
31
+ rubocop (1.29.1)
33
32
  parallel (~> 1.10)
34
33
  parser (>= 3.1.0.0)
35
34
  rainbow (>= 2.2.2, < 4.0)
36
35
  regexp_parser (>= 1.8, < 3.0)
37
- rexml
38
- rubocop-ast (>= 1.16.0, < 2.0)
36
+ rexml (>= 3.2.5, < 4.0)
37
+ rubocop-ast (>= 1.17.0, < 2.0)
39
38
  ruby-progressbar (~> 1.7)
40
39
  unicode-display_width (>= 1.4.0, < 3.0)
41
- rubocop-ast (1.16.0)
40
+ rubocop-ast (1.18.0)
42
41
  parser (>= 3.1.1.0)
43
- rubocop-performance (1.13.3)
42
+ rubocop-performance (1.14.0)
44
43
  rubocop (>= 1.7.0, < 2.0)
45
44
  rubocop-ast (>= 0.4.0)
46
45
  rubocop-rails (2.14.2)
47
46
  activesupport (>= 4.2.0)
48
47
  rack (>= 1.1)
49
48
  rubocop (>= 1.7.0, < 2.0)
50
- rubocop-rspec (2.9.0)
49
+ rubocop-rspec (2.11.1)
51
50
  rubocop (~> 1.19)
52
51
  ruby-progressbar (1.11.0)
53
52
  tzinfo (2.0.4)
54
53
  concurrent-ruby (~> 1.0)
55
54
  unicode-display_width (2.1.0)
56
- zeitwerk (2.5.4)
57
55
 
58
56
  PLATFORMS
59
57
  arm64-darwin-21
58
+ x86_64-linux
60
59
 
61
60
  DEPENDENCIES
62
61
  art-rubocop!
data/README.md CHANGED
@@ -8,7 +8,7 @@ Add this line to your app's Gemfile (You do not need to add `rubocop` as a depen
8
8
 
9
9
  ```ruby
10
10
  group :test, :development do
11
- gem 'art-rubocop', git: "https://github.com/articulate/art-rubocop.git"
11
+ gem 'art-rubocop'
12
12
  end
13
13
  ```
14
14
 
data/art-rubocop.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "art-rubocop"
5
- spec.version = "1.0.2"
5
+ spec.version = "1.0.5"
6
6
  spec.authors = ["MarkOps"]
7
7
  spec.email = ["devinrm@articulate.com"]
8
8
  spec.summary = "Rubocop style guide for Articulate MarkOps"
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: art-rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - MarkOps
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-04-08 00:00:00.000000000 Z
11
+ date: 2022-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -112,13 +112,15 @@ dependencies:
112
112
  - - ">="
113
113
  - !ruby/object:Gem::Version
114
114
  version: '0'
115
- description:
115
+ description:
116
116
  email:
117
117
  - devinrm@articulate.com
118
118
  executables: []
119
119
  extensions: []
120
120
  extra_rdoc_files: []
121
121
  files:
122
+ - ".github/dependabot.yml"
123
+ - ".rubocop.yml"
122
124
  - Gemfile
123
125
  - Gemfile.lock
124
126
  - LICENSE
@@ -128,13 +130,15 @@ files:
128
130
  - art-rubocop.gemspec
129
131
  - default.yml
130
132
  - lib/art-rubocop.rb
131
- - pkg/art-rubocop-1.0.1.gem
133
+ - pkg/art-rubocop-1.0.2.gem
134
+ - pkg/art-rubocop-1.0.3.gem
135
+ - pkg/art-rubocop-1.0.4.gem
132
136
  homepage: https://github.com/articulate/art-rubocop
133
137
  licenses:
134
138
  - GPL-3.0-or-later
135
139
  metadata:
136
140
  rubygems_mfa_required: 'true'
137
- post_install_message:
141
+ post_install_message:
138
142
  rdoc_options: []
139
143
  require_paths:
140
144
  - lib
@@ -149,8 +153,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
149
153
  - !ruby/object:Gem::Version
150
154
  version: '0'
151
155
  requirements: []
152
- rubygems_version: 3.3.11
153
- signing_key:
156
+ rubygems_version: 3.3.14
157
+ signing_key:
154
158
  specification_version: 4
155
159
  summary: Rubocop style guide for Articulate MarkOps
156
160
  test_files: []
Binary file