yoshiki 5.0.3 → 6.0.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: 848a7a5407591f03f42fbd398951563fc4f2951adb1c461972c5b130bb6577c1
4
- data.tar.gz: 6556a1e03561f0a6597fcf62ca6768c102a58afdaad69c2afd00e416d404c3d9
3
+ metadata.gz: 98739230083f0b7353aef5daa3effb1e8c4d0df768ac13ffa7a7c64eeab28975
4
+ data.tar.gz: ede6390e6088173cb5884b635bf665dac9151c9a1c86390f8424fb9b45343bbf
5
5
  SHA512:
6
- metadata.gz: e77ddaa34c698de9fe5c544e8955ffc8df8e196b7e0b54996fda6193b1b0128eb0f9d120b65c2480e0f05539d258969d80d52be91435d301a2547c0ad0e096a6
7
- data.tar.gz: 7036ef080017acc7819aa944ca39367b7d3553026dfbfd9d737b97daac55df22c6f8ac5907413901f79f63402cb7c2a074bfb901ee308c7c994b47a8d20de7bc
6
+ metadata.gz: 7481068b31379be47257195a24b64f1e9f39f87b960054d21470d661850605546f36d56a9b6a0b7b32da3d66f0db0465e7d04160cdeb36bb0a016de31e9cedcf
7
+ data.tar.gz: 24bf74b2f025b6078849c8cbec49c3bf31852effd96eb9caae53b91991f7ab60927e426b8b7d6c477b385c0ac8b27548b7fce976a466f2342b3f1962b884f2b0
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/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.3)
5
- rubocop (= 0.57.2)
6
- rubocop-rspec (= 1.27.0)
4
+ yoshiki (6.0.1)
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.17.1
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.3'
5
+ VERSION = '6.0.1'
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.5.0', '< 2.7.0' ]
22
22
 
23
- spec.add_dependency 'rubocop', '0.57.2'
24
- spec.add_dependency 'rubocop-rspec', '1.27.0'
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.3
4
+ version: 6.0.1
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-12-08 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.57.2
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.57.2
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: 1.27.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: 1.27.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
@@ -128,19 +128,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
128
128
  requirements:
129
129
  - - ">="
130
130
  - !ruby/object:Gem::Version
131
- version: 2.4.0
131
+ version: 2.5.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.7.8
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: []