easy_style 0.5.2 → 0.6.1

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: 04172267a8fbf1a2df7b6c965cd7304fd10467ab16dc220182537055f2cde35f
4
- data.tar.gz: 6e6a17a9abc5721b51958a9f179d7f145932a28c99c437bf1aaba3b4c4c3809c
3
+ metadata.gz: 5e021432df812cbc1a09d06d3cb7d9fc22f02ddfc17fd2d462158227317392b0
4
+ data.tar.gz: 298251774adcda16125c8daa0da0d280f9121ba3af00da44178cae4e96b365fc
5
5
  SHA512:
6
- metadata.gz: f43ff73af628dd0a856b41bebff5e2057986638980ecda29785b90fd0c35e46735453aad8138cf5de2ad684b1e7b10d497ae42039487794c3157110456e1cb61
7
- data.tar.gz: 59929a85c879ab684171e9de53e49c287c1802b652cf324a2e769587fc93269584e4ef924cf14164114e8233d139d8217725d6ac7737b639e45b08ebabf6375c
6
+ metadata.gz: 4318fd0aad0fc990d4ebc80c008cbedd1ba65cf6482b3a94a56f2fc55c084d85b57646d6965ca9b2047e22f46f5ca2532459901b0f700e46db4672dda3d48ba3
7
+ data.tar.gz: 9813dccbab570238a7866f21eece1770bc5ca58bab9272bef9c32f5fdc628d6c488fbb59c27703d49d6eb5d8a2984574e6ce403aae71a9fb677033619544bf97
@@ -3,13 +3,17 @@ on: [push]
3
3
 
4
4
  jobs:
5
5
  build:
6
+ strategy:
7
+ fail-fast: false
8
+ matrix:
9
+ ruby: ["3.1.2", "3.1.4"]
6
10
  runs-on: ubuntu-latest
7
11
  steps:
8
- - uses: actions/checkout@v1
12
+ - uses: actions/checkout@v4
9
13
  - name: Set up Ruby
10
14
  uses: ruby/setup-ruby@v1
11
15
  with:
12
- ruby-version: 3.1.2
16
+ ruby-version: ${{ matrix.ruby }}
13
17
  bundler-cache: true
14
18
  - name: Rubocop
15
19
  run: bundle exec rubocop
data/Gemfile.lock CHANGED
@@ -1,59 +1,71 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- easy_style (0.4.0)
5
- rubocop (~> 1.53.0)
6
- rubocop-rails (~> 2.20.0)
4
+ easy_style (0.6.1)
5
+ rubocop (~> 1.60.0)
6
+ rubocop-rails (~> 2.23.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (7.0.5.1)
11
+ activesupport (7.1.3.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)
17
- concurrent-ruby (1.2.2)
18
- i18n (1.14.1)
22
+ base64 (0.2.0)
23
+ bigdecimal (3.1.7)
24
+ concurrent-ruby (1.2.3)
25
+ connection_pool (2.4.1)
26
+ drb (2.2.1)
27
+ i18n (1.14.4)
19
28
  concurrent-ruby (~> 1.0)
20
- json (2.6.3)
29
+ json (2.7.2)
21
30
  language_server-protocol (3.17.0.3)
22
- minitest (5.18.1)
23
- parallel (1.23.0)
24
- parser (3.2.2.3)
31
+ minitest (5.22.3)
32
+ mutex_m (0.2.0)
33
+ parallel (1.24.0)
34
+ parser (3.3.0.5)
25
35
  ast (~> 2.4.1)
26
36
  racc
27
- racc (1.7.1)
28
- rack (3.0.8)
37
+ racc (1.7.3)
38
+ rack (3.0.10)
29
39
  rainbow (3.1.1)
30
40
  rake (12.3.3)
31
- regexp_parser (2.8.1)
32
- rexml (3.2.5)
33
- rubocop (1.53.1)
41
+ regexp_parser (2.9.0)
42
+ rexml (3.2.6)
43
+ rubocop (1.60.2)
34
44
  json (~> 2.3)
35
45
  language_server-protocol (>= 3.17.0)
36
46
  parallel (~> 1.10)
37
- parser (>= 3.2.2.3)
47
+ parser (>= 3.3.0.2)
38
48
  rainbow (>= 2.2.2, < 4.0)
39
49
  regexp_parser (>= 1.8, < 3.0)
40
50
  rexml (>= 3.2.5, < 4.0)
41
- rubocop-ast (>= 1.28.0, < 2.0)
51
+ rubocop-ast (>= 1.30.0, < 2.0)
42
52
  ruby-progressbar (~> 1.7)
43
53
  unicode-display_width (>= 2.4.0, < 3.0)
44
- rubocop-ast (1.29.0)
45
- parser (>= 3.2.1.0)
46
- rubocop-rails (2.20.2)
54
+ rubocop-ast (1.31.2)
55
+ parser (>= 3.3.0.4)
56
+ rubocop-rails (2.23.1)
47
57
  activesupport (>= 4.2.0)
48
58
  rack (>= 1.1)
49
59
  rubocop (>= 1.33.0, < 2.0)
60
+ rubocop-ast (>= 1.30.0, < 2.0)
50
61
  ruby-progressbar (1.13.0)
51
62
  tzinfo (2.0.6)
52
63
  concurrent-ruby (~> 1.0)
53
- unicode-display_width (2.4.2)
64
+ unicode-display_width (2.5.0)
54
65
 
55
66
  PLATFORMS
56
67
  arm64-darwin-22
68
+ arm64-darwin-23
57
69
  x86_64-darwin-21
58
70
  x86_64-linux
59
71
 
@@ -62,4 +74,4 @@ DEPENDENCIES
62
74
  rake (~> 12.0)
63
75
 
64
76
  BUNDLED WITH
65
- 2.4.14
77
+ 2.3.26
data/default.yml CHANGED
@@ -58,6 +58,8 @@ Metrics/PerceivedComplexity:
58
58
  AllowedMethods:
59
59
  - included
60
60
 
61
+ Naming/BlockForwarding:
62
+ Enabled: false
61
63
  Naming/VariableNumber:
62
64
  EnforcedStyle: snake_case
63
65
 
data/easy_style.gemspec CHANGED
@@ -1,32 +1,32 @@
1
- require_relative 'lib/easy_style/version'
1
+ require_relative "lib/easy_style/version"
2
2
 
3
3
  Gem::Specification.new do |spec|
4
- spec.name = 'easy_style'
4
+ spec.name = "easy_style"
5
5
  spec.version = EasyStyle::VERSION
6
- spec.authors = ['Easy Software Ltd']
7
- spec.email = ['info@easyredmine.com']
6
+ spec.authors = ["Easy Software Ltd"]
7
+ spec.email = ["info@easyredmine.com"]
8
8
 
9
- spec.summary = 'Rubocop configs'
10
- spec.description = 'Rubocop configs'
11
- spec.homepage = 'https://github.com/easysoftware/easy_style'
12
- spec.license = 'MIT'
9
+ spec.summary = "Rubocop configs"
10
+ spec.description = "Rubocop configs"
11
+ spec.homepage = "https://github.com/easysoftware/easy_style"
12
+ spec.license = "MIT"
13
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
 
17
- spec.metadata['homepage_uri'] = spec.homepage
18
- spec.metadata['source_code_uri'] = spec.homepage
19
- spec.metadata['changelog_uri'] = spec.homepage
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["source_code_uri"] = spec.homepage
19
+ spec.metadata["changelog_uri"] = spec.homepage
20
20
 
21
21
  # Specify which files should be added to the gem when it is released.
22
22
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
23
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
24
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
25
  end
26
- spec.bindir = 'exe'
26
+ spec.bindir = "exe"
27
27
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
- spec.require_paths = ['lib']
28
+ spec.require_paths = ["lib"]
29
29
 
30
- spec.add_dependency 'rubocop', '~> 1.53.0'
31
- spec.add_dependency 'rubocop-rails', '~> 2.20.0'
30
+ spec.add_dependency "rubocop", "~> 1.60.0"
31
+ spec.add_dependency "rubocop-rails", "~> 2.23.1"
32
32
  end
@@ -1,5 +1,5 @@
1
1
  module EasyStyle
2
2
 
3
- VERSION = '0.5.2'
3
+ VERSION = "0.6.1"
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.2
4
+ version: 0.6.1
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: 2024-02-02 00:00:00.000000000 Z
11
+ date: 2024-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.53.0
19
+ version: 1.60.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 1.53.0
26
+ version: 1.60.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rubocop-rails
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 2.20.0
33
+ version: 2.23.1
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 2.20.0
40
+ version: 2.23.1
41
41
  description: Rubocop configs
42
42
  email:
43
43
  - info@easyredmine.com
@@ -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.4.22
82
+ rubygems_version: 3.3.26
83
83
  signing_key:
84
84
  specification_version: 4
85
85
  summary: Rubocop configs