easy_style 0.5.1 → 0.5.2

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: 9c7d2afdffd768a02cbe6a82e56c1c50c67de420859b6924479cfdae477f14f3
4
- data.tar.gz: f3fbb92bc62b28862d44beccaa034e10a580f53dd94955cb9e7504bda0e5c513
3
+ metadata.gz: 04172267a8fbf1a2df7b6c965cd7304fd10467ab16dc220182537055f2cde35f
4
+ data.tar.gz: 6e6a17a9abc5721b51958a9f179d7f145932a28c99c437bf1aaba3b4c4c3809c
5
5
  SHA512:
6
- metadata.gz: bcada55723c47bda9bc0455423c13398731ec7a048e07374b554cc55de776a70a4ff4cbd4febe2af3cdd2b69dd565b9ad8305a5d89073bfe514a61a8bd5a3880
7
- data.tar.gz: 29edffb4da2df6b6d96afba14fba5c1b44ac5e5a92bda10cbd8242d33f7832a4584f1abb28e9f1852d22f273761721aae7a0aa9bccbbcfc50cc6f85f2ce4b9f4
6
+ metadata.gz: f43ff73af628dd0a856b41bebff5e2057986638980ecda29785b90fd0c35e46735453aad8138cf5de2ad684b1e7b10d497ae42039487794c3157110456e1cb61
7
+ data.tar.gz: 59929a85c879ab684171e9de53e49c287c1802b652cf324a2e769587fc93269584e4ef924cf14164114e8233d139d8217725d6ac7737b639e45b08ebabf6375c
data/Gemfile.lock CHANGED
@@ -1,46 +1,35 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- easy_style (0.5.0)
4
+ easy_style (0.4.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.1.2)
12
- base64
13
- bigdecimal
11
+ activesupport (7.0.5.1)
14
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
15
- connection_pool (>= 2.2.5)
16
- drb
17
13
  i18n (>= 1.6, < 2)
18
14
  minitest (>= 5.1)
19
- mutex_m
20
15
  tzinfo (~> 2.0)
21
16
  ast (2.4.2)
22
- base64 (0.2.0)
23
- bigdecimal (3.1.4)
24
17
  concurrent-ruby (1.2.2)
25
- connection_pool (2.4.1)
26
- drb (2.2.0)
27
- ruby2_keywords
28
18
  i18n (1.14.1)
29
19
  concurrent-ruby (~> 1.0)
30
- json (2.7.0)
20
+ json (2.6.3)
31
21
  language_server-protocol (3.17.0.3)
32
- minitest (5.20.0)
33
- mutex_m (0.2.0)
22
+ minitest (5.18.1)
34
23
  parallel (1.23.0)
35
- parser (3.2.2.4)
24
+ parser (3.2.2.3)
36
25
  ast (~> 2.4.1)
37
26
  racc
38
- racc (1.7.3)
27
+ racc (1.7.1)
39
28
  rack (3.0.8)
40
29
  rainbow (3.1.1)
41
30
  rake (12.3.3)
42
- regexp_parser (2.8.2)
43
- rexml (3.2.6)
31
+ regexp_parser (2.8.1)
32
+ rexml (3.2.5)
44
33
  rubocop (1.53.1)
45
34
  json (~> 2.3)
46
35
  language_server-protocol (>= 3.17.0)
@@ -52,20 +41,18 @@ GEM
52
41
  rubocop-ast (>= 1.28.0, < 2.0)
53
42
  ruby-progressbar (~> 1.7)
54
43
  unicode-display_width (>= 2.4.0, < 3.0)
55
- rubocop-ast (1.30.0)
44
+ rubocop-ast (1.29.0)
56
45
  parser (>= 3.2.1.0)
57
46
  rubocop-rails (2.20.2)
58
47
  activesupport (>= 4.2.0)
59
48
  rack (>= 1.1)
60
49
  rubocop (>= 1.33.0, < 2.0)
61
50
  ruby-progressbar (1.13.0)
62
- ruby2_keywords (0.0.5)
63
51
  tzinfo (2.0.6)
64
52
  concurrent-ruby (~> 1.0)
65
- unicode-display_width (2.5.0)
53
+ unicode-display_width (2.4.2)
66
54
 
67
55
  PLATFORMS
68
- arm64-darwin-21
69
56
  arm64-darwin-22
70
57
  x86_64-darwin-21
71
58
  x86_64-linux
@@ -75,4 +62,4 @@ DEPENDENCIES
75
62
  rake (~> 12.0)
76
63
 
77
64
  BUNDLED WITH
78
- 2.4.9
65
+ 2.4.14
data/easy_style.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.description = 'Rubocop configs'
11
11
  spec.homepage = 'https://github.com/easysoftware/easy_style'
12
12
  spec.license = 'MIT'
13
- spec.required_ruby_version = "~> 3.1.2"
13
+ spec.required_ruby_version = ">= 3.1.2"
14
14
 
15
15
  # spec.metadata['allowed_push_host'] = 'TODO: Set to \'http://mygemserver.com\''
16
16
 
@@ -1,5 +1,5 @@
1
1
  module EasyStyle
2
2
 
3
- VERSION = '0.5.1'
3
+ VERSION = '0.5.2'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Easy Software Ltd
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-01 00:00:00.000000000 Z
11
+ date: 2024-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -70,7 +70,7 @@ require_paths:
70
70
  - lib
71
71
  required_ruby_version: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - "~>"
73
+ - - ">="
74
74
  - !ruby/object:Gem::Version
75
75
  version: 3.1.2
76
76
  required_rubygems_version: !ruby/object:Gem::Requirement
@@ -79,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
79
79
  - !ruby/object:Gem::Version
80
80
  version: '0'
81
81
  requirements: []
82
- rubygems_version: 3.3.19
82
+ rubygems_version: 3.4.22
83
83
  signing_key:
84
84
  specification_version: 4
85
85
  summary: Rubocop configs