yoshiki 5.0.2 → 6.0.0

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
- SHA1:
3
- metadata.gz: '081f263c6e0745e5355af535fa97524f08c95884'
4
- data.tar.gz: 84a768d2fb4ebe4475d5677d6e19645e1004444a
2
+ SHA256:
3
+ metadata.gz: fade10a73a7d8d6358d78e1d30e5772651bb8b9872d767d0458ec14196a4a6bc
4
+ data.tar.gz: 5ed6244bad0295864ba7afe76a8ad785d65478ca36f74c076c6ae8c0e01c9135
5
5
  SHA512:
6
- metadata.gz: 921c01c069d8575f4cff155f4d5ce20c5978531f4487198db16f5a3a523811c5461d4862cd72a36be6d390af62270d1e287bedfddeff9deb8b0965025cfe4864
7
- data.tar.gz: 8955787566a43c2356bac0a16fcb800254d779b516bd2f05192b2f955dbbff58313775d90c7a6e5d6dc1bc776abd9063adb1a3c7bbc2d4fef724a7caacf9e4e7
6
+ metadata.gz: 400be5ced876b93b2fa5421179d8ff3107dbd9d8837669bd4733763a41d5f1f89ca427ead162ad39ad2449a3f52d593367d7015a0c1d1aff8bafe9f650b06fa2
7
+ data.tar.gz: '039d09bf3c652e7493f539281f2161813a518d86f68a450331fb60c2208c3e150c271ac01822458c39ef868843d5f454c09b86259cc9b56ef75c8bef7ef1b4ec'
data/.devfu-rubocop.yml CHANGED
@@ -142,6 +142,9 @@ RSpec/DescribeClass:
142
142
  RSpec/ImplicitExpect:
143
143
  EnforcedStyle: should
144
144
 
145
+ RSpec/ImplicitSubject:
146
+ Enabled: false
147
+
145
148
  RSpec/LeadingSubject:
146
149
  Enabled: false
147
150
 
data/.gitlab-ci.yml CHANGED
@@ -1,42 +1,22 @@
1
1
  before_script:
2
2
  - bundle install --clean --jobs $(nproc) --path=/vendor/bundle --retry=3
3
3
 
4
- ruby 2.4.0:
4
+ ruby 2.6:
5
5
  cache:
6
- key: "$CI_BUILD_REF_NAME-2.4.0"
6
+ key: "$CI_BUILD_REF_NAME-2.6"
7
7
  paths:
8
8
  - vendor/bundle
9
- image: devfu/ci:2.4.0
9
+ image: devfu/ruby:2.6-alpine
10
10
  script:
11
11
  - bundle exec rake spec rubocop
12
12
  stage: test
13
13
 
14
- ruby 2.4.1:
15
- cache:
16
- key: "$CI_BUILD_REF_NAME-2.4.1"
17
- paths:
18
- - vendor/bundle
19
- image: devfu/ci:2.4.1
20
- script:
21
- - bundle exec rake spec rubocop
22
- stage: test
23
-
24
- ruby 2.4.2:
25
- cache:
26
- key: "$CI_BUILD_REF_NAME-2.4.2"
27
- paths:
28
- - vendor/bundle
29
- image: devfu/ci:2.4.2
30
- script:
31
- - bundle exec rake spec rubocop
32
- stage: test
33
-
34
- ruby 2.4.3:
14
+ ruby 2.5.1:
35
15
  cache:
36
- key: "$CI_BUILD_REF_NAME-2.4.3"
16
+ key: "$CI_BUILD_REF_NAME-2.5.1"
37
17
  paths:
38
18
  - vendor/bundle
39
- image: devfu/ci:2.4.3
19
+ image: devfu/ci:2.5.1
40
20
  script:
41
21
  - bundle exec rake spec rubocop
42
22
  stage: test
@@ -50,13 +30,3 @@ ruby 2.5.0:
50
30
  script:
51
31
  - bundle exec rake spec rubocop
52
32
  stage: test
53
-
54
- ruby 2.5.1:
55
- cache:
56
- key: "$CI_BUILD_REF_NAME-2.5.1"
57
- paths:
58
- - vendor/bundle
59
- image: devfu/ci:2.5.1
60
- script:
61
- - bundle exec rake spec rubocop
62
- stage: test
data/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM ruby:alpine
1
+ FROM ruby:2.6-alpine
2
2
 
3
3
  RUN apk upgrade --update && apk add --no-cache git build-base
4
4
 
data/Gemfile CHANGED
@@ -4,3 +4,5 @@ source 'https://rubygems.org'
4
4
 
5
5
  # Specify your gem's dependencies in yoshiki.gemspec
6
6
  gemspec
7
+
8
+ gem 'psych'
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- yoshiki (5.0.2)
5
- rubocop
6
- rubocop-rspec
4
+ yoshiki (6.0.0)
5
+ rubocop (~> 0.61.0)
6
+ rubocop-rspec (~> 1.30.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -14,13 +14,15 @@ GEM
14
14
  jaro_winkler (1.5.1)
15
15
  method_source (0.8.2)
16
16
  parallel (1.12.1)
17
- parser (2.5.1.0)
17
+ parser (2.5.3.0)
18
18
  ast (~> 2.4.0)
19
19
  powerpack (0.1.2)
20
20
  pry (0.10.4)
21
21
  coderay (~> 1.1.0)
22
22
  method_source (~> 0.8.1)
23
23
  slop (~> 3.4)
24
+ psych (4.0.4)
25
+ stringio
24
26
  rainbow (3.0.0)
25
27
  rake (12.2.1)
26
28
  rspec (3.7.0)
@@ -36,18 +38,19 @@ GEM
36
38
  diff-lcs (>= 1.2.0, < 2.0)
37
39
  rspec-support (~> 3.7.0)
38
40
  rspec-support (3.7.0)
39
- rubocop (0.57.2)
41
+ rubocop (0.61.1)
40
42
  jaro_winkler (~> 1.5.1)
41
43
  parallel (~> 1.10)
42
- parser (>= 2.5)
44
+ parser (>= 2.5, != 2.5.1.1)
43
45
  powerpack (~> 0.1)
44
46
  rainbow (>= 2.2.2, < 4.0)
45
47
  ruby-progressbar (~> 1.7)
46
- unicode-display_width (~> 1.0, >= 1.0.1)
47
- rubocop-rspec (1.27.0)
48
- rubocop (>= 0.56.0)
49
- ruby-progressbar (1.9.0)
48
+ unicode-display_width (~> 1.4.0)
49
+ rubocop-rspec (1.30.1)
50
+ rubocop (>= 0.60.0)
51
+ ruby-progressbar (1.10.0)
50
52
  slop (3.6.0)
53
+ stringio (3.0.2)
51
54
  unicode-display_width (1.4.0)
52
55
 
53
56
  PLATFORMS
@@ -56,9 +59,10 @@ PLATFORMS
56
59
  DEPENDENCIES
57
60
  bundler
58
61
  pry
62
+ psych
59
63
  rake
60
64
  rspec
61
65
  yoshiki!
62
66
 
63
67
  BUNDLED WITH
64
- 1.16.2
68
+ 1.17.2
data/README.md CHANGED
@@ -4,7 +4,7 @@ Yōshiki (様式)
4
4
  Dev Fu! Style
5
5
  -------------
6
6
 
7
- For rubocop v0.57.2 & ruby 2.5.1
7
+ For rubocop v0.61.1 & ruby 2.6.10
8
8
 
9
9
  [![rubygems][gem-image]][gem]
10
10
  [![build status][ci-image]][ci]
@@ -29,7 +29,7 @@ or in your gemfile
29
29
  `gem 'yoshiki'`
30
30
 
31
31
 
32
- In your ``.rubocop.yml`
32
+ In your `.rubocop.yml`
33
33
 
34
34
  ```
35
35
  inherit_gem:
@@ -38,9 +38,10 @@ inherit_gem:
38
38
 
39
39
  ## Ruby support
40
40
 
41
- - ruby 2.3, use [~> 3.2][3.2]
41
+ - ruby 2.3, use [~> 3.2][3.2]
42
42
  - ruby 2.4, use [=> 4.0][4.0]
43
43
  - ruby 2.5, use [=> 4.3][4.3]
44
+ - ruby 2.6, use [=> 6.0][6.0]
44
45
 
45
46
  <!-- links -->
46
47
  [ci]: https://gitlab.com/devfu/yoshiki/pipelines?scope=branches "build history"
@@ -48,6 +49,7 @@ inherit_gem:
48
49
  [3.2]: https://gitlab.com/devfu/yoshiki/tags/v3.2.0
49
50
  [4.0]: https://gitlab.com/devfu/yoshiki/tags/v4.0.0
50
51
  [4.3]: https://gitlab.com/devfu/yoshiki/tags/v4.3.0
52
+ [6.0]: https://gitlab.com/devfu/yoshiki/tags/v6.0.0
51
53
 
52
54
  <!-- images -->
53
55
  [ci-image]: https://gitlab.com/devfu/yoshiki/badges/master/pipeline.svg
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Yoshiki
4
4
 
5
- VERSION = '5.0.2'
5
+ VERSION = '6.0.0'
6
6
 
7
7
  end
data/yoshiki.gemspec CHANGED
@@ -18,10 +18,10 @@ Gem::Specification.new do |spec|
18
18
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename f }
19
19
  spec.require_paths = %w[ lib ]
20
20
 
21
- spec.required_ruby_version = [ '>= 2.4.0', '< 2.6.0' ]
21
+ spec.required_ruby_version = [ '>= 2.4.0', '< 2.7.0' ]
22
22
 
23
- spec.add_dependency 'rubocop'
24
- spec.add_dependency 'rubocop-rspec'
23
+ spec.add_dependency 'rubocop', '~> 0.61.0'
24
+ spec.add_dependency 'rubocop-rspec', '~> 1.30.0'
25
25
 
26
26
  spec.add_development_dependency 'bundler'
27
27
  spec.add_development_dependency 'pry'
metadata CHANGED
@@ -1,43 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yoshiki
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.2
4
+ version: 6.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - BM5k
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-06-26 00:00:00.000000000 Z
11
+ date: 2022-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: 0.61.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: '0'
26
+ version: 0.61.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rubocop-rspec
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0'
33
+ version: 1.30.0
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: '0'
40
+ version: 1.30.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -120,7 +120,7 @@ homepage: https://gitlab.com/devfu/yoshiki
120
120
  licenses:
121
121
  - MIT
122
122
  metadata: {}
123
- post_install_message:
123
+ post_install_message:
124
124
  rdoc_options: []
125
125
  require_paths:
126
126
  - lib
@@ -131,16 +131,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
131
131
  version: 2.4.0
132
132
  - - "<"
133
133
  - !ruby/object:Gem::Version
134
- version: 2.6.0
134
+ version: 2.7.0
135
135
  required_rubygems_version: !ruby/object:Gem::Requirement
136
136
  requirements:
137
137
  - - ">="
138
138
  - !ruby/object:Gem::Version
139
139
  version: '0'
140
140
  requirements: []
141
- rubyforge_project:
142
- rubygems_version: 2.5.2
143
- signing_key:
141
+ rubygems_version: 3.0.3.1
142
+ signing_key:
144
143
  specification_version: 4
145
144
  summary: Dev Fu! Style
146
145
  test_files: []