etoji 0.2.0 → 0.3.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: afd0c2d37f817f5949e3a7741963b706ab949db07a7fb73f2e36526d8942dd04
4
- data.tar.gz: ac4ebdb09514199ede54c8be287d27a837f6531ba01e6980e73ed4cebeceef22
3
+ metadata.gz: 4f5965039a590d7fa6c678d3224506503deca0730b9206bd1370a6d3f0e89bca
4
+ data.tar.gz: 936b1ca484ef47007f5bceac824a49b228010113affd43866ec26c33f77e698f
5
5
  SHA512:
6
- metadata.gz: d3d7bd8f402ce06b70782dad76f0f29d6260b35eab0d03609ac9be96a73365229eb91fbff3facfa3fd2766f098db67408c7c019be7463cdbc37c5fa095a71102
7
- data.tar.gz: 7f63e67f25db88352b044f13f462f0895dd2b7cdc040db6f2e0f717320a975f367c26da7155f170baf43f3ecf5b0f5db01fd10baa44deb0f0f915be456396449
6
+ metadata.gz: 013c640706720fd21e562a184fb34f0827ce6b263ce376a377b1b79cbb4bbcb81e711ef3118e869fa736a2c368100a960fefd64f4b4f86df62c5d10ddb483246
7
+ data.tar.gz: 23001e211231da48c6ac0d40ad81760ce2bf2ec39ded089336f8b9e9b05b9a434b01cb8e1d3e6bb4c344a2ca7d7e4b966f4e62c83ce458e0363e075f732adc92
@@ -17,8 +17,9 @@ jobs:
17
17
  matrix:
18
18
  ruby:
19
19
  - '3.2.0'
20
+ - '3.3.0'
20
21
  steps:
21
- - uses: actions/checkout@v2
22
+ - uses: actions/checkout@v4
22
23
  - name: Set up Ruby
23
24
  uses: ruby/setup-ruby@v1
24
25
  with:
data/Gemfile CHANGED
@@ -5,6 +5,7 @@ source "https://rubygems.org"
5
5
  # Specify your gem's dependencies in etoji.gemspec
6
6
  gemspec
7
7
 
8
+ gem "irb"
8
9
  gem "rake"
9
10
  gem "rspec"
10
11
  gem "rbs", require: false
data/Steepfile CHANGED
@@ -1,5 +1,3 @@
1
- D = Steep::Diagnostic
2
-
3
1
  target :lib do
4
2
  signature "sig"
5
3
 
@@ -7,15 +5,6 @@ target :lib do
7
5
 
8
6
  library(
9
7
  "json"
8
+ "tsort"
10
9
  )
11
-
12
- # NOTE: Unexpected error occured like below.
13
- # lib/etoji.rb:16:4: [error] Syntax `case_match` is not supported in Steep
14
- # │ Diagnostic ID: Ruby::UnsupportedSyntax
15
- # │
16
- # └ case [with_prev, with_next]
17
- # ~~~~~~~~~~~~~~~~~~~~~~~~~~~
18
- configure_code_diagnostics do |hash|
19
- hash[D::Ruby::UnsupportedSyntax] = :information
20
- end
21
10
  end
data/etoji.gemspec CHANGED
@@ -27,4 +27,5 @@ Gem::Specification.new do |spec|
27
27
  spec.require_paths = ["lib"]
28
28
 
29
29
  spec.add_dependency 'json'
30
+ spec.add_dependency 'tsort'
30
31
  end
data/lib/etoji/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Etoji
4
- VERSION = "0.2.0"
4
+ VERSION = "0.3.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: etoji
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - mitsubosh
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2023-01-06 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: json
@@ -24,6 +23,20 @@ dependencies:
24
23
  - - ">="
25
24
  - !ruby/object:Gem::Version
26
25
  version: '0'
26
+ - !ruby/object:Gem::Dependency
27
+ name: tsort
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
27
40
  description: Simple 干支(eto) library
28
41
  email:
29
42
  - yuya.mitsuboshi@gmail.com
@@ -46,7 +59,6 @@ files:
46
59
  - db/jyunishi.json
47
60
  - etoji.gemspec
48
61
  - lib/etoji.rb
49
- - lib/etoji/.ruby-version
50
62
  - lib/etoji/jikkan.rb
51
63
  - lib/etoji/jyunishi.rb
52
64
  - lib/etoji/version.rb
@@ -54,14 +66,12 @@ files:
54
66
  - sig/lib/etoji/jikkan.rbs
55
67
  - sig/lib/etoji/jyunishi.rbs
56
68
  - sig/lib/etoji/version.rbs
57
- - sig/patch/data.rbs
58
69
  homepage: https://github.com/MITSUBOSHI/etoji
59
70
  licenses:
60
71
  - MIT
61
72
  metadata:
62
73
  homepage_uri: https://github.com/MITSUBOSHI/etoji
63
74
  source_code_uri: https://github.com/MITSUBOSHI/etoji
64
- post_install_message:
65
75
  rdoc_options: []
66
76
  require_paths:
67
77
  - lib
@@ -76,8 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
86
  - !ruby/object:Gem::Version
77
87
  version: '0'
78
88
  requirements: []
79
- rubygems_version: 3.4.1
80
- signing_key:
89
+ rubygems_version: 4.0.3
81
90
  specification_version: 4
82
91
  summary: Simple 干支(eto) library
83
92
  test_files: []
@@ -1 +0,0 @@
1
- 3.2.0
data/sig/patch/data.rbs DELETED
@@ -1,3 +0,0 @@
1
- class Data
2
- def self.define: (*untyped) -> untyped
3
- end