easy_style 0.5.2 → 0.6.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: 04172267a8fbf1a2df7b6c965cd7304fd10467ab16dc220182537055f2cde35f
4
- data.tar.gz: 6e6a17a9abc5721b51958a9f179d7f145932a28c99c437bf1aaba3b4c4c3809c
3
+ metadata.gz: e44e511240fb30325dbe0a46670cc272c1adeb6fb9f5091d59695df7871b1882
4
+ data.tar.gz: 1ea8925236d6445c9f65b6e59bd80f3f60b0df8d8081c2e4017aab0bac9fcab3
5
5
  SHA512:
6
- metadata.gz: f43ff73af628dd0a856b41bebff5e2057986638980ecda29785b90fd0c35e46735453aad8138cf5de2ad684b1e7b10d497ae42039487794c3157110456e1cb61
7
- data.tar.gz: 59929a85c879ab684171e9de53e49c287c1802b652cf324a2e769587fc93269584e4ef924cf14164114e8233d139d8217725d6ac7737b639e45b08ebabf6375c
6
+ metadata.gz: 5d4ed0a9a57a5bee94297fe185e127257e55eb31b66e34d1dbf707add28ddba473a0314e2c80781278484387aef9d72c2bb7e4ce8cc3e6ad4db37bfe851693ca
7
+ data.tar.gz: 900ca1bc48d8398af50c026ee961f0a0bf47cd43b807fc8c9b5e2b4e7a7edab52ed1c14ed77e34914ed31c1cfb908d7e97279dab88f84fb15ed544261077c835
@@ -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,56 +1,69 @@
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.0)
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)
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)
22
+ base64 (0.2.0)
23
+ bigdecimal (3.1.6)
24
+ concurrent-ruby (1.2.3)
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.1)
21
31
  language_server-protocol (3.17.0.3)
22
- minitest (5.18.1)
23
- parallel (1.23.0)
24
- parser (3.2.2.3)
32
+ minitest (5.21.2)
33
+ mutex_m (0.2.0)
34
+ parallel (1.24.0)
35
+ parser (3.3.0.5)
25
36
  ast (~> 2.4.1)
26
37
  racc
27
- racc (1.7.1)
28
- rack (3.0.8)
38
+ racc (1.7.3)
39
+ rack (3.0.9)
29
40
  rainbow (3.1.1)
30
41
  rake (12.3.3)
31
- regexp_parser (2.8.1)
32
- rexml (3.2.5)
33
- rubocop (1.53.1)
42
+ regexp_parser (2.9.0)
43
+ rexml (3.2.6)
44
+ rubocop (1.60.2)
34
45
  json (~> 2.3)
35
46
  language_server-protocol (>= 3.17.0)
36
47
  parallel (~> 1.10)
37
- parser (>= 3.2.2.3)
48
+ parser (>= 3.3.0.2)
38
49
  rainbow (>= 2.2.2, < 4.0)
39
50
  regexp_parser (>= 1.8, < 3.0)
40
51
  rexml (>= 3.2.5, < 4.0)
41
- rubocop-ast (>= 1.28.0, < 2.0)
52
+ rubocop-ast (>= 1.30.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
- rubocop-rails (2.20.2)
57
+ rubocop-rails (2.23.1)
47
58
  activesupport (>= 4.2.0)
48
59
  rack (>= 1.1)
49
60
  rubocop (>= 1.33.0, < 2.0)
61
+ rubocop-ast (>= 1.30.0, < 2.0)
50
62
  ruby-progressbar (1.13.0)
63
+ ruby2_keywords (0.0.5)
51
64
  tzinfo (2.0.6)
52
65
  concurrent-ruby (~> 1.0)
53
- unicode-display_width (2.4.2)
66
+ unicode-display_width (2.5.0)
54
67
 
55
68
  PLATFORMS
56
69
  arm64-darwin-22
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.0"
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.2
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Easy Software Ltd
@@ -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