yoshiki 5.1.0 → 7.0.0.pre.alpha.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: 842af0616cacb944d9f523d407453fd3d46105c7c7aaa86551a28e105835a013
4
- data.tar.gz: 23878371bed40ba61f8738aa9715fa60c0dd37a2edc06185807b94529376fa2f
3
+ metadata.gz: abc1d5448907888517e75d31506335bd5a46bd51e4aa3dfc4e09b1b7be7335c0
4
+ data.tar.gz: '083d8691c5a78b4e53f3bf06e488aa22c4c6be1bb9d62872871a24f1f4d61420'
5
5
  SHA512:
6
- metadata.gz: e490ec8040453d50fdbd63277da21540d7e1e6e71103ffb0c9d9fff61c30a872da00534cf5967f35724e2a39773b107fd5a903c706c6dd15c1e65d3ee71df26a
7
- data.tar.gz: 4e5468e97c263f6aee1a3f8a1bd0aed2b50c4e6002ba1881fb5adb4c0e7b2751a025aa392dc93a59cc5524238b2866dafa79fdb4944dac1b4ea0c0f0c79b3900
6
+ metadata.gz: 6320ea6198205ec6e70264f66b6eb1881091ad949335a1563eedacf88d2d14234d1aff30edd19a0082dfb07ae7b3551e483220fa6b0e3f5237ef48f7ea054a9d
7
+ data.tar.gz: 943902c368760432300f7bdabc9cd420cd5ade737b3dbe7a1f366eb502e2db696b1cb885c3e9c1b89ba76dce7960afc965a7234fe755ab2f88dc6dab60bb7989
data/.gitlab-ci.yml CHANGED
@@ -1,62 +1,50 @@
1
- before_script:
2
- - bundle install --clean --jobs $(nproc) --path=/vendor/bundle --retry=3
3
-
4
- ruby 2.4.0:
5
- cache:
6
- key: "$CI_BUILD_REF_NAME-2.4.0"
7
- paths:
8
- - vendor/bundle
9
- image: devfu/ci:2.4.0
10
- script:
11
- - bundle exec rake spec rubocop
12
- stage: test
1
+ variables:
2
+ BUNDLE_BIN: vendor/bundle/bin
3
+ BUNDLE_PATH: vendor/bundle
13
4
 
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
5
+ before_script:
6
+ - apk upgrade --update && apk add --no-cache git build-base
7
+ - bundle install --clean --jobs $(nproc) --retry=3
23
8
 
24
- ruby 2.4.2:
9
+ ruby 3.1:
10
+ allow_failure: true
25
11
  cache:
26
- key: "$CI_BUILD_REF_NAME-2.4.2"
12
+ key: "$CI_BUILD_REF_NAME-3.1"
27
13
  paths:
28
14
  - vendor/bundle
29
- image: devfu/ci:2.4.2
15
+ image: ruby:3.1-alpine
30
16
  script:
31
17
  - bundle exec rake spec rubocop
32
18
  stage: test
33
19
 
34
- ruby 2.4.3:
20
+ ruby 3.0:
21
+ allow_failure: true
35
22
  cache:
36
- key: "$CI_BUILD_REF_NAME-2.4.3"
23
+ key: "$CI_BUILD_REF_NAME-3.0"
37
24
  paths:
38
25
  - vendor/bundle
39
- image: devfu/ci:2.4.3
26
+ image: ruby:3.0-alpine
40
27
  script:
41
28
  - bundle exec rake spec rubocop
42
29
  stage: test
43
30
 
44
- ruby 2.5.0:
31
+ ruby 2.7:
32
+ allow_failure: true
45
33
  cache:
46
- key: "$CI_BUILD_REF_NAME-2.5.0"
34
+ key: "$CI_BUILD_REF_NAME-2.7"
47
35
  paths:
48
36
  - vendor/bundle
49
- image: devfu/ci:2.5.0
37
+ image: ruby:2.7-alpine
50
38
  script:
51
39
  - bundle exec rake spec rubocop
52
40
  stage: test
53
41
 
54
- ruby 2.5.1:
42
+ ruby 2.6.1:
55
43
  cache:
56
- key: "$CI_BUILD_REF_NAME-2.5.1"
44
+ key: "$CI_BUILD_REF_NAME-2.6"
57
45
  paths:
58
46
  - vendor/bundle
59
- image: devfu/ci:2.5.1
47
+ image: ruby:2.6.10-alpine
60
48
  script:
61
49
  - bundle exec rake spec rubocop
62
50
  stage: test
data/.rubocop.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.3
2
+ TargetRubyVersion: 2.6
3
3
 
4
4
  inherit_from:
5
5
  - .devfu-rubocop.yml
data/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM ruby:alpine
1
+ FROM ruby:2.6.10-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.1.0)
5
- rubocop (~> 0.61.0)
6
- rubocop-rspec (~> 1.30.0)
4
+ yoshiki (7.0.0.pre.alpha.1)
5
+ rubocop (> 0.61.0)
6
+ rubocop-rspec (> 1.30.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -21,6 +21,8 @@ GEM
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)
@@ -48,6 +50,7 @@ GEM
48
50
  rubocop (>= 0.60.0)
49
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.61.1 & 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.1.0'
5
+ VERSION = '7.0.0-alpha.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.6.0'
22
22
 
23
- spec.add_dependency 'rubocop', '~> 0.61.0'
24
- spec.add_dependency 'rubocop-rspec', '~> 1.30.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,41 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yoshiki
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.0
4
+ version: 7.0.0.pre.alpha.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
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
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
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
40
  version: 1.30.0
41
41
  - !ruby/object:Gem::Dependency
@@ -120,27 +120,23 @@ 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
127
127
  required_ruby_version: !ruby/object:Gem::Requirement
128
128
  requirements:
129
129
  - - ">="
130
- - !ruby/object:Gem::Version
131
- version: 2.4.0
132
- - - "<"
133
130
  - !ruby/object:Gem::Version
134
131
  version: 2.6.0
135
132
  required_rubygems_version: !ruby/object:Gem::Requirement
136
133
  requirements:
137
- - - ">="
134
+ - - ">"
138
135
  - !ruby/object:Gem::Version
139
- version: '0'
136
+ version: 1.3.1
140
137
  requirements: []
141
- rubyforge_project:
142
- rubygems_version: 2.7.8
143
- signing_key:
138
+ rubygems_version: 3.0.3.1
139
+ signing_key:
144
140
  specification_version: 4
145
141
  summary: Dev Fu! Style
146
142
  test_files: []