easy_style 0.5.0 → 0.5.1

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: f1658e30c1a480dff1e670730c3b1c248239110a7ff93e68abf7f9316e1ff5be
4
- data.tar.gz: 9436cb261cd9534c1c8bd355a20d23245dd36def9a76d33e403380e98dadf82e
3
+ metadata.gz: 9c7d2afdffd768a02cbe6a82e56c1c50c67de420859b6924479cfdae477f14f3
4
+ data.tar.gz: f3fbb92bc62b28862d44beccaa034e10a580f53dd94955cb9e7504bda0e5c513
5
5
  SHA512:
6
- metadata.gz: d8701143995d6fcdb1a607eefbe175552e5a3c9114b09490bcf9229d0b5ad8f7f5c48323349d2d8536cbcf7d07d0657fdbb28acf1dbd23deb23d17191186e142
7
- data.tar.gz: 66b127290cba8101b0e6c6d8b1b1d796f5a2d0418b9994d5acd31eaa0384deb493632162e24c215955478694a2754429fc4cbcc76e192911d3719b107a042dee
6
+ metadata.gz: bcada55723c47bda9bc0455423c13398731ec7a048e07374b554cc55de776a70a4ff4cbd4febe2af3cdd2b69dd565b9ad8305a5d89073bfe514a61a8bd5a3880
7
+ data.tar.gz: 29edffb4da2df6b6d96afba14fba5c1b44ac5e5a92bda10cbd8242d33f7832a4584f1abb28e9f1852d22f273761721aae7a0aa9bccbbcfc50cc6f85f2ce4b9f4
data/Gemfile.lock CHANGED
@@ -1,35 +1,46 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- easy_style (0.4.0)
4
+ easy_style (0.5.0)
5
5
  rubocop (~> 1.53.0)
6
6
  rubocop-rails (~> 2.20.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (7.0.5.1)
11
+ activesupport (7.1.2)
12
+ base64
13
+ bigdecimal
12
14
  concurrent-ruby (~> 1.0, >= 1.0.2)
15
+ connection_pool (>= 2.2.5)
16
+ drb
13
17
  i18n (>= 1.6, < 2)
14
18
  minitest (>= 5.1)
19
+ mutex_m
15
20
  tzinfo (~> 2.0)
16
21
  ast (2.4.2)
22
+ base64 (0.2.0)
23
+ bigdecimal (3.1.4)
17
24
  concurrent-ruby (1.2.2)
25
+ connection_pool (2.4.1)
26
+ drb (2.2.0)
27
+ ruby2_keywords
18
28
  i18n (1.14.1)
19
29
  concurrent-ruby (~> 1.0)
20
- json (2.6.3)
30
+ json (2.7.0)
21
31
  language_server-protocol (3.17.0.3)
22
- minitest (5.18.1)
32
+ minitest (5.20.0)
33
+ mutex_m (0.2.0)
23
34
  parallel (1.23.0)
24
- parser (3.2.2.3)
35
+ parser (3.2.2.4)
25
36
  ast (~> 2.4.1)
26
37
  racc
27
- racc (1.7.1)
38
+ racc (1.7.3)
28
39
  rack (3.0.8)
29
40
  rainbow (3.1.1)
30
41
  rake (12.3.3)
31
- regexp_parser (2.8.1)
32
- rexml (3.2.5)
42
+ regexp_parser (2.8.2)
43
+ rexml (3.2.6)
33
44
  rubocop (1.53.1)
34
45
  json (~> 2.3)
35
46
  language_server-protocol (>= 3.17.0)
@@ -41,18 +52,20 @@ GEM
41
52
  rubocop-ast (>= 1.28.0, < 2.0)
42
53
  ruby-progressbar (~> 1.7)
43
54
  unicode-display_width (>= 2.4.0, < 3.0)
44
- rubocop-ast (1.29.0)
55
+ rubocop-ast (1.30.0)
45
56
  parser (>= 3.2.1.0)
46
57
  rubocop-rails (2.20.2)
47
58
  activesupport (>= 4.2.0)
48
59
  rack (>= 1.1)
49
60
  rubocop (>= 1.33.0, < 2.0)
50
61
  ruby-progressbar (1.13.0)
62
+ ruby2_keywords (0.0.5)
51
63
  tzinfo (2.0.6)
52
64
  concurrent-ruby (~> 1.0)
53
- unicode-display_width (2.4.2)
65
+ unicode-display_width (2.5.0)
54
66
 
55
67
  PLATFORMS
68
+ arm64-darwin-21
56
69
  arm64-darwin-22
57
70
  x86_64-darwin-21
58
71
  x86_64-linux
@@ -62,4 +75,4 @@ DEPENDENCIES
62
75
  rake (~> 12.0)
63
76
 
64
77
  BUNDLED WITH
65
- 2.4.14
78
+ 2.4.9
data/default.yml CHANGED
@@ -1,6 +1,9 @@
1
1
  require:
2
2
  - rubocop-rails
3
3
 
4
+ inherit_mode:
5
+ merge: Exclude
6
+
4
7
  Rails:
5
8
  Enabled: true
6
9
  AllCops:
@@ -1,5 +1,5 @@
1
1
  module EasyStyle
2
2
 
3
- VERSION = '0.5.0'
3
+ VERSION = '0.5.1'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Easy Software Ltd