fudo3 0.2.6 → 0.2.7

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: ab4d4c534dfe0bd398a0c721a29349e463b55bc5b077fa625d47a9ffd215d41d
4
- data.tar.gz: c8ae13f1a0f2011bbe95039a39131ce3f1f5640ef9b1546138871da78a026f37
3
+ metadata.gz: 28c879d1b680af8dcc32cc9a3d6647b30b19930e562ab7a1ddedc58f4b290a45
4
+ data.tar.gz: e0c6e6c7e5663a757c34e31293013e185ce7d3b41b2e67c47bc0dd7d1cd6da40
5
5
  SHA512:
6
- metadata.gz: 14036c1c850bf67a98ca540a11f4cefd09515be8d6beeeff4c6fe6a964c391ca77fef14e926e82a4584e53432c0f06a9eb1d64ffd78b02c270cb39a5b3765867
7
- data.tar.gz: 30694aa178990e44e22a7eaa3d3cec6fc668ffae8b86f4ada481b960eb236f3896b7be739dcdb6726464ac31d551679d81549afb6653490de74929e316e1ec1e
6
+ metadata.gz: 8ed157a0abd910b32b9e2b76360d3cfab1eb560bc7a6ee761557deed581aafe7e29b0e5fbf0adecfb290fc71f528f4422e603689748da6d262bef164bed36b31
7
+ data.tar.gz: 373dcc237e864e5b42b7e5ffc02f9b148d866c393b6dedae948380e2041d357b34f14fbbfd90c0d2defd3c069cd3cd05eee9565df5fd603630c22d520be763ed
data/CHANGELOG.md CHANGED
@@ -1,4 +1,10 @@
1
- ## 0.2.5 (2022-04-24)
1
+ ## 0.2.7 (2022-07-19)
2
+ * Bump rubocop from 1.28.1 to 1.31.2 ([1a5a041](https://github.com/yposi/fudo3/commit/1a5a041))
3
+ * Bump rubocop-rspec from 2.10.0 to 2.12.1 ([822ed6a](https://github.com/yposi/fudo3/commit/822ed6a))
4
+
5
+ ## <small>0.2.6 (2022-04-24)</small>
6
+
7
+ ## <small>0.2.5 (2022-04-24)</small>
2
8
 
3
9
  * Bump rake from 13.0.3 to 13.0.6 ([cb49fe3](https://github.com/yposi/fudo3/commit/cb49fe3))
4
10
  * Bump rspec from 3.10.0 to 3.11.0 ([b9b0921](https://github.com/yposi/fudo3/commit/b9b0921))
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fudo3 (0.2.6)
4
+ fudo3 (0.2.7)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -9,12 +9,13 @@ GEM
9
9
  ast (2.4.2)
10
10
  diff-lcs (1.5.0)
11
11
  docile (1.3.5)
12
+ json (2.6.2)
12
13
  parallel (1.22.1)
13
14
  parser (3.1.2.0)
14
15
  ast (~> 2.4.1)
15
16
  rainbow (3.1.1)
16
17
  rake (13.0.6)
17
- regexp_parser (2.3.0)
18
+ regexp_parser (2.5.0)
18
19
  rexml (3.2.5)
19
20
  rspec (3.11.0)
20
21
  rspec-core (~> 3.11.0)
@@ -31,21 +32,22 @@ GEM
31
32
  rspec-support (3.11.0)
32
33
  rspec_junit_formatter (0.5.1)
33
34
  rspec-core (>= 2, < 4, != 2.12.0)
34
- rubocop (1.28.1)
35
+ rubocop (1.31.2)
36
+ json (~> 2.3)
35
37
  parallel (~> 1.10)
36
38
  parser (>= 3.1.0.0)
37
39
  rainbow (>= 2.2.2, < 4.0)
38
40
  regexp_parser (>= 1.8, < 3.0)
39
- rexml
40
- rubocop-ast (>= 1.17.0, < 2.0)
41
+ rexml (>= 3.2.5, < 4.0)
42
+ rubocop-ast (>= 1.18.0, < 2.0)
41
43
  ruby-progressbar (~> 1.7)
42
44
  unicode-display_width (>= 1.4.0, < 3.0)
43
- rubocop-ast (1.17.0)
45
+ rubocop-ast (1.19.1)
44
46
  parser (>= 3.1.1.0)
45
47
  rubocop-rake (0.6.0)
46
48
  rubocop (~> 1.0)
47
- rubocop-rspec (2.10.0)
48
- rubocop (~> 1.19)
49
+ rubocop-rspec (2.12.1)
50
+ rubocop (~> 1.31)
49
51
  ruby-progressbar (1.11.0)
50
52
  simplecov (0.21.2)
51
53
  docile (~> 1.1)
@@ -53,7 +55,7 @@ GEM
53
55
  simplecov_json_formatter (~> 0.1)
54
56
  simplecov-html (0.12.3)
55
57
  simplecov_json_formatter (0.1.3)
56
- unicode-display_width (2.1.0)
58
+ unicode-display_width (2.2.0)
57
59
 
58
60
  PLATFORMS
59
61
  ruby
data/lib/fudo3/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Fudo3
4
- VERSION = '0.2.6'
4
+ VERSION = '0.2.7'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fudo3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shuhei Yamashita
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-04-24 00:00:00.000000000 Z
11
+ date: 2022-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler