toji 2.11.0 → 2.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/example/calendar.ipynb +42 -51
- data/example/calendar.yaml +6 -6
- data/example/calendar_file.ipynb +35 -35
- data/example/example_core.rb +882 -230
- data/example/kake_ingredient.rb +21 -15
- data/example/koji_ingredient.rb +31 -21
- data/example/{koji_making.ipynb → koji_progress.ipynb} +14 -14
- data/example/{koji_making.rb → koji_progress.rb} +3 -2
- data/example/{koji_making.yaml → koji_progress.yaml} +8 -9
- data/example/{koji_making_multi.ipynb → koji_progress_multi.ipynb} +21 -22
- data/example/{moromi.ipynb → moromi_progress.ipynb} +22 -22
- data/example/{moromi.rb → moromi_progress.rb} +3 -2
- data/example/{moromi.yaml → moromi_progress.yaml} +0 -0
- data/example/moto_progress.ipynb +121 -0
- data/example/{moto.rb → moto_progress.rb} +3 -2
- data/example/{moto.yaml → moto_progress.yaml} +14 -15
- data/example/recipe.rb +44 -32
- data/lib/toji.rb +4 -2
- data/lib/toji/calendar.rb +12 -12
- data/lib/toji/calendar/date_column.rb +8 -8
- data/lib/toji/calendar/date_row.rb +6 -6
- data/lib/toji/ingredient.rb +6 -2
- data/lib/toji/ingredient/alcohol.rb +14 -0
- data/lib/toji/ingredient/base.rb +11 -0
- data/lib/toji/ingredient/kake.rb +3 -9
- data/lib/toji/ingredient/koji.rb +19 -10
- data/lib/toji/ingredient/lactic_acid.rb +14 -0
- data/lib/toji/ingredient/rice.rb +50 -4
- data/lib/toji/ingredient/tanekoji.rb +29 -0
- data/lib/toji/ingredient/water.rb +18 -0
- data/lib/toji/ingredient/yeast.rb +20 -0
- data/lib/toji/processing.rb +18 -0
- data/lib/toji/processing/base.rb +7 -0
- data/lib/toji/processing/cooled_rice.rb +22 -0
- data/lib/toji/processing/cooled_rice_element.rb +8 -0
- data/lib/toji/processing/dekoji.rb +22 -0
- data/lib/toji/processing/dekoji_element.rb +8 -0
- data/lib/toji/processing/kake_processing.rb +7 -0
- data/lib/toji/processing/koji_processing.rb +10 -0
- data/lib/toji/processing/rice_processing.rb +19 -0
- data/lib/toji/processing/soaked_rice.rb +49 -0
- data/lib/toji/processing/soaked_rice_element.rb +18 -0
- data/lib/toji/processing/steamed_rice.rb +22 -0
- data/lib/toji/processing/steamed_rice_element.rb +8 -0
- data/lib/toji/product.rb +11 -32
- data/lib/toji/product/schedule_factory.rb +80 -0
- data/lib/toji/progress.rb +23 -0
- data/lib/toji/progress/base_progress.rb +37 -0
- data/lib/toji/progress/base_state.rb +39 -0
- data/lib/toji/progress/builder.rb +53 -0
- data/lib/toji/progress/graph.rb +11 -0
- data/lib/toji/{brew → progress}/graph/ab.rb +4 -4
- data/lib/toji/{brew → progress}/graph/bmd.rb +2 -2
- data/lib/toji/{brew/graph/multi_progress.rb → progress/graph/multi_progress_note.rb} +11 -11
- data/lib/toji/{brew/graph/progress.rb → progress/graph/progress_note.rb} +20 -18
- data/lib/toji/progress/koji_progress.rb +15 -0
- data/lib/toji/progress/koji_state.rb +23 -0
- data/lib/toji/{brew/moromi.rb → progress/moromi_progress.rb} +9 -5
- data/lib/toji/progress/moromi_state.rb +77 -0
- data/lib/toji/progress/moto_progress.rb +15 -0
- data/lib/toji/progress/moto_state.rb +31 -0
- data/lib/toji/progress/progress.rb +15 -0
- data/lib/toji/progress/state.rb +9 -0
- data/lib/toji/progress/state/baume_to_nihonshudo.rb +21 -0
- data/lib/toji/progress/state/nihonshudo_to_baume.rb +21 -0
- data/lib/toji/recipe.rb +51 -39
- data/lib/toji/recipe/ab_expect.rb +2 -2
- data/lib/toji/recipe/action.rb +2 -2
- data/lib/toji/recipe/step.rb +99 -71
- data/lib/toji/schedule.rb +5 -0
- data/lib/toji/schedule/action_schedule.rb +9 -0
- data/lib/toji/{event → schedule}/base.rb +1 -1
- data/lib/toji/schedule/kake_schedule.rb +11 -0
- data/lib/toji/schedule/koji_schedule.rb +11 -0
- data/lib/toji/schedule/rice_schedule.rb +16 -0
- data/lib/toji/utils.rb +43 -0
- data/lib/toji/version.rb +1 -1
- metadata +59 -45
- data/lib/toji/brew.rb +0 -18
- data/lib/toji/brew/base.rb +0 -55
- data/lib/toji/brew/builder.rb +0 -98
- data/lib/toji/brew/graph.rb +0 -11
- data/lib/toji/brew/koji.rb +0 -11
- data/lib/toji/brew/moto.rb +0 -11
- data/lib/toji/brew/state.rb +0 -122
- data/lib/toji/brew/wrapped_state.rb +0 -109
- data/lib/toji/event.rb +0 -5
- data/lib/toji/event/action_event.rb +0 -12
- data/lib/toji/event/kake_event.rb +0 -13
- data/lib/toji/event/koji_event.rb +0 -19
- data/lib/toji/event/rice_event.rb +0 -34
- data/lib/toji/ingredient/kake/actual.rb +0 -26
- data/lib/toji/ingredient/kake/base.rb +0 -18
- data/lib/toji/ingredient/kake/expected.rb +0 -40
- data/lib/toji/ingredient/koji/actual.rb +0 -29
- data/lib/toji/ingredient/koji/actual_fermentable.rb +0 -15
- data/lib/toji/ingredient/koji/base.rb +0 -35
- data/lib/toji/ingredient/koji/expected.rb +0 -45
- data/lib/toji/ingredient/koji/expected_fermentable.rb +0 -15
- data/lib/toji/ingredient/koji_rate.rb +0 -16
- data/lib/toji/ingredient/rice/actual_steamable.rb +0 -27
- data/lib/toji/ingredient/rice/base.rb +0 -40
- data/lib/toji/ingredient/rice/expected_steamable.rb +0 -27
- data/lib/toji/ingredient/rice_rate.rb +0 -23
- data/lib/toji/product/event_factory.rb +0 -70
data/lib/toji/recipe/action.rb
CHANGED
data/lib/toji/recipe/step.rb
CHANGED
@@ -1,25 +1,33 @@
|
|
1
1
|
module Toji
|
2
2
|
module Recipe
|
3
3
|
module Step
|
4
|
-
|
5
|
-
|
6
|
-
attr_accessor :
|
7
|
-
attr_accessor :
|
8
|
-
attr_accessor :
|
9
|
-
|
10
|
-
attr_accessor :
|
11
|
-
attr_accessor :
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
4
|
+
attr_reader :index
|
5
|
+
attr_reader :subindex
|
6
|
+
attr_accessor :kojis
|
7
|
+
attr_accessor :kakes
|
8
|
+
attr_accessor :waters
|
9
|
+
attr_accessor :lactic_acids
|
10
|
+
attr_accessor :alcohols
|
11
|
+
attr_accessor :yeasts
|
12
|
+
|
13
|
+
# 麹米
|
14
|
+
def koji_total
|
15
|
+
(kojis || []).map(&:weight).map(&:to_f).sum.to_f
|
16
|
+
end
|
17
|
+
|
18
|
+
# 掛米
|
19
|
+
def kake_total
|
20
|
+
(kakes || []).map(&:weight).map(&:to_f).sum.to_f
|
21
|
+
end
|
19
22
|
|
20
23
|
# 総米
|
21
24
|
def rice_total
|
22
|
-
|
25
|
+
koji_total + kake_total
|
26
|
+
end
|
27
|
+
|
28
|
+
# 汲水
|
29
|
+
def water_total
|
30
|
+
(waters || []).map(&:weight).map(&:to_f).sum.to_f
|
23
31
|
end
|
24
32
|
|
25
33
|
# 麹歩合
|
@@ -27,8 +35,8 @@ module Toji
|
|
27
35
|
# 留め仕込みまでの総米重量の20〜22%が標準である
|
28
36
|
# なお、留め仕込みまでの麹歩合が20%を下回ると蒸米の溶解糖化に影響が出るので注意がいる
|
29
37
|
# 出典: 酒造教本 P95
|
30
|
-
def
|
31
|
-
val =
|
38
|
+
def koji_ratio
|
39
|
+
val = koji_total / rice_total
|
32
40
|
val.nan? ? 0.0 : val
|
33
41
|
end
|
34
42
|
|
@@ -41,54 +49,90 @@ module Toji
|
|
41
49
|
# 全体: 留までの総米に対し120〜130%、標準は125%、高級酒は130〜145%である
|
42
50
|
#
|
43
51
|
# 出典: 酒造教本 P96
|
44
|
-
def
|
45
|
-
val =
|
52
|
+
def water_ratio
|
53
|
+
val = water_total / rice_total
|
46
54
|
val.nan? ? 0.0 : val
|
47
55
|
end
|
48
56
|
|
49
|
-
def
|
57
|
+
def scale!(ratio)
|
58
|
+
kojis&.each {|koji|
|
59
|
+
koji.weight *= ratio
|
60
|
+
}
|
61
|
+
kakes&.each {|kake|
|
62
|
+
kake.weight *= ratio
|
63
|
+
}
|
64
|
+
waters&.each {|water|
|
65
|
+
water.weight *= ratio
|
66
|
+
}
|
67
|
+
lactic_acids&.each {|lactic_acid|
|
68
|
+
lactic_acid.weight *= ratio
|
69
|
+
}
|
70
|
+
alcohols&.each {|alcohol|
|
71
|
+
alcohol.weight *= ratio
|
72
|
+
}
|
73
|
+
yeasts&.each {|yeast|
|
74
|
+
yeast.weight *= ratio
|
75
|
+
}
|
76
|
+
self
|
77
|
+
end
|
78
|
+
|
79
|
+
def scale(ratio)
|
80
|
+
Utils.check_dup(self)
|
81
|
+
|
82
|
+
dst = self.dup
|
83
|
+
dst.scale!(ratio)
|
84
|
+
end
|
85
|
+
|
86
|
+
def round!(ndigit=0, mini_ndigit=nil, half: :up)
|
50
87
|
if !mini_ndigit
|
51
88
|
mini_ndigit = ndigit + 3
|
52
89
|
end
|
53
90
|
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
o.kake_soaked_rate = kake_soaked_rate.to_f
|
63
|
-
o.kake_steamed_rate = kake_steamed_rate.to_f
|
64
|
-
o.kake_interval_days = kake_interval_days.to_i
|
65
|
-
|
66
|
-
o.water = water.to_f.round(ndigit, half: half)
|
67
|
-
o.lactic_acid = lactic_acid.to_f.round(mini_ndigit, half: half)
|
68
|
-
o.alcohol = alcohol.to_f.round(ndigit, half: half)
|
69
|
-
o.yeast = yeast.to_f.round(mini_ndigit, half: half)
|
91
|
+
kojis&.each {|koji|
|
92
|
+
koji.weight = koji.weight.to_f.round(ndigit, half: half)
|
93
|
+
}
|
94
|
+
kakes&.each {|kake|
|
95
|
+
kake.weight = kake.weight.to_f.round(ndigit, half: half)
|
96
|
+
}
|
97
|
+
waters&.each {|water|
|
98
|
+
water.weight = water.weight.to_f.round(ndigit, half: half)
|
70
99
|
}
|
100
|
+
lactic_acids&.each {|lactic_acid|
|
101
|
+
lactic_acid.weight = lactic_acid.weight.to_f.round(mini_ndigit, half: half)
|
102
|
+
}
|
103
|
+
alcohols&.each {|alcohol|
|
104
|
+
alcohol.weight = alcohol.weight.to_f.round(ndigit, half: half)
|
105
|
+
}
|
106
|
+
yeasts&.each {|yeast|
|
107
|
+
yeast.weight = yeast.weight.to_f.round(mini_ndigit, half: half)
|
108
|
+
}
|
109
|
+
|
110
|
+
self
|
111
|
+
end
|
112
|
+
|
113
|
+
def round(ndigit=0, mini_ndigit=nil, half: :up)
|
114
|
+
Utils.check_dup(self)
|
115
|
+
|
116
|
+
dst = self.dup
|
117
|
+
dst.round!(ndigit, mini_ndigit, half: half)
|
71
118
|
end
|
72
119
|
|
73
120
|
def +(other)
|
74
121
|
if Step===other
|
75
|
-
self
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
o.alcohol = alcohol.to_f + other.alcohol.to_f
|
90
|
-
o.yeast = yeast.to_f + other.yeast.to_f
|
91
|
-
}
|
122
|
+
Utils.check_dup(self)
|
123
|
+
Utils.check_dup(other)
|
124
|
+
|
125
|
+
dst = self.dup
|
126
|
+
other = other.dup
|
127
|
+
|
128
|
+
dst.kojis = Utils.merge_ingredients(dst.kojis, other.kojis)
|
129
|
+
dst.kakes = Utils.merge_ingredients(dst.kakes, other.kakes)
|
130
|
+
dst.waters = Utils.merge_ingredients(dst.waters, other.waters)
|
131
|
+
dst.lactic_acids = Utils.merge_ingredients(dst.lactic_acids, other.lactic_acids)
|
132
|
+
dst.alcohols = Utils.merge_ingredients(dst.alcohols, other.alcohols)
|
133
|
+
dst.yeasts = Utils.merge_ingredients(dst.yeasts, other.yeasts)
|
134
|
+
|
135
|
+
dst
|
92
136
|
else
|
93
137
|
x, y = other.coerce(self)
|
94
138
|
x + y
|
@@ -97,23 +141,7 @@ module Toji
|
|
97
141
|
|
98
142
|
def *(other)
|
99
143
|
if Integer===other || Float===other
|
100
|
-
|
101
|
-
o.koji = koji.to_f * other
|
102
|
-
o.koji_soaked_rate = koji_soaked_rate.to_f
|
103
|
-
o.koji_steamed_rate = koji_steamed_rate.to_f
|
104
|
-
o.koji_dekoji_rate = koji_dekoji_rate.to_f
|
105
|
-
o.koji_interval_days = koji_interval_days.to_i
|
106
|
-
|
107
|
-
o.kake = kake.to_f * other
|
108
|
-
o.kake_soaked_rate = kake_soaked_rate.to_f
|
109
|
-
o.kake_steamed_rate = kake_steamed_rate.to_f
|
110
|
-
o.kake_interval_days = kake_interval_days.to_i
|
111
|
-
|
112
|
-
o.water = water.to_f * other
|
113
|
-
o.lactic_acid = lactic_acid.to_f * other
|
114
|
-
o.alcohol = alcohol.to_f * other
|
115
|
-
o.yeast = yeast.to_f * other
|
116
|
-
}
|
144
|
+
scale(other)
|
117
145
|
else
|
118
146
|
x, y = other.coerce(self)
|
119
147
|
x * y
|
data/lib/toji/utils.rb
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
module Toji
|
2
|
+
module Utils
|
3
|
+
def self.activerecord_defined?
|
4
|
+
Object.const_defined?(:ActiveRecord) && ActiveRecord.const_defined?(:Base)
|
5
|
+
end
|
6
|
+
|
7
|
+
def self.check_dup(obj)
|
8
|
+
if activerecord_defined? && ActiveRecord::Base===obj
|
9
|
+
if !obj.class.method_defined?(:initialize_dup, false)
|
10
|
+
raise Error, "implementation required: #{obj.class}.initialize_dup"
|
11
|
+
end
|
12
|
+
else
|
13
|
+
if !obj.class.private_method_defined?(:initialize_copy, false)
|
14
|
+
raise Error, "implementation required: #{obj.class}.initialize_copy"
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.merge_ingredients(ingredients1, ingredients2)
|
20
|
+
result = {}
|
21
|
+
|
22
|
+
ingredients1&.each {|src|
|
23
|
+
dst = result[src.group_key]
|
24
|
+
if dst
|
25
|
+
dst.weight = dst.weight.to_f + src.weight.to_f
|
26
|
+
else
|
27
|
+
result[src.group_key] = src
|
28
|
+
end
|
29
|
+
}
|
30
|
+
|
31
|
+
ingredients2&.each {|src|
|
32
|
+
dst = result[src.group_key]
|
33
|
+
if dst
|
34
|
+
dst.weight = dst.weight.to_f + src.weight.to_f
|
35
|
+
else
|
36
|
+
result[src.group_key] = src.dup
|
37
|
+
end
|
38
|
+
}
|
39
|
+
|
40
|
+
result.values
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
data/lib/toji/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: toji
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yoshida Tetsuya
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -115,62 +115,76 @@ files:
|
|
115
115
|
- example/example_core.rb
|
116
116
|
- example/kake_ingredient.rb
|
117
117
|
- example/koji_ingredient.rb
|
118
|
-
- example/
|
119
|
-
- example/
|
120
|
-
- example/
|
121
|
-
- example/
|
122
|
-
- example/
|
123
|
-
- example/
|
124
|
-
- example/
|
125
|
-
- example/
|
126
|
-
- example/
|
118
|
+
- example/koji_progress.ipynb
|
119
|
+
- example/koji_progress.rb
|
120
|
+
- example/koji_progress.yaml
|
121
|
+
- example/koji_progress_multi.ipynb
|
122
|
+
- example/moromi_progress.ipynb
|
123
|
+
- example/moromi_progress.rb
|
124
|
+
- example/moromi_progress.yaml
|
125
|
+
- example/moto_progress.ipynb
|
126
|
+
- example/moto_progress.rb
|
127
|
+
- example/moto_progress.yaml
|
127
128
|
- example/recipe.rb
|
128
129
|
- lib/toji.rb
|
129
|
-
- lib/toji/brew.rb
|
130
|
-
- lib/toji/brew/base.rb
|
131
|
-
- lib/toji/brew/builder.rb
|
132
|
-
- lib/toji/brew/graph.rb
|
133
|
-
- lib/toji/brew/graph/ab.rb
|
134
|
-
- lib/toji/brew/graph/bmd.rb
|
135
|
-
- lib/toji/brew/graph/multi_progress.rb
|
136
|
-
- lib/toji/brew/graph/progress.rb
|
137
|
-
- lib/toji/brew/koji.rb
|
138
|
-
- lib/toji/brew/moromi.rb
|
139
|
-
- lib/toji/brew/moto.rb
|
140
|
-
- lib/toji/brew/state.rb
|
141
|
-
- lib/toji/brew/wrapped_state.rb
|
142
130
|
- lib/toji/calendar.rb
|
143
131
|
- lib/toji/calendar/date_column.rb
|
144
132
|
- lib/toji/calendar/date_row.rb
|
145
|
-
- lib/toji/event.rb
|
146
|
-
- lib/toji/event/action_event.rb
|
147
|
-
- lib/toji/event/base.rb
|
148
|
-
- lib/toji/event/kake_event.rb
|
149
|
-
- lib/toji/event/koji_event.rb
|
150
|
-
- lib/toji/event/rice_event.rb
|
151
133
|
- lib/toji/ingredient.rb
|
134
|
+
- lib/toji/ingredient/alcohol.rb
|
135
|
+
- lib/toji/ingredient/base.rb
|
152
136
|
- lib/toji/ingredient/kake.rb
|
153
|
-
- lib/toji/ingredient/kake/actual.rb
|
154
|
-
- lib/toji/ingredient/kake/base.rb
|
155
|
-
- lib/toji/ingredient/kake/expected.rb
|
156
137
|
- lib/toji/ingredient/koji.rb
|
157
|
-
- lib/toji/ingredient/
|
158
|
-
- lib/toji/ingredient/koji/actual_fermentable.rb
|
159
|
-
- lib/toji/ingredient/koji/base.rb
|
160
|
-
- lib/toji/ingredient/koji/expected.rb
|
161
|
-
- lib/toji/ingredient/koji/expected_fermentable.rb
|
162
|
-
- lib/toji/ingredient/koji_rate.rb
|
138
|
+
- lib/toji/ingredient/lactic_acid.rb
|
163
139
|
- lib/toji/ingredient/rice.rb
|
164
|
-
- lib/toji/ingredient/
|
165
|
-
- lib/toji/ingredient/
|
166
|
-
- lib/toji/ingredient/
|
167
|
-
- lib/toji/
|
140
|
+
- lib/toji/ingredient/tanekoji.rb
|
141
|
+
- lib/toji/ingredient/water.rb
|
142
|
+
- lib/toji/ingredient/yeast.rb
|
143
|
+
- lib/toji/processing.rb
|
144
|
+
- lib/toji/processing/base.rb
|
145
|
+
- lib/toji/processing/cooled_rice.rb
|
146
|
+
- lib/toji/processing/cooled_rice_element.rb
|
147
|
+
- lib/toji/processing/dekoji.rb
|
148
|
+
- lib/toji/processing/dekoji_element.rb
|
149
|
+
- lib/toji/processing/kake_processing.rb
|
150
|
+
- lib/toji/processing/koji_processing.rb
|
151
|
+
- lib/toji/processing/rice_processing.rb
|
152
|
+
- lib/toji/processing/soaked_rice.rb
|
153
|
+
- lib/toji/processing/soaked_rice_element.rb
|
154
|
+
- lib/toji/processing/steamed_rice.rb
|
155
|
+
- lib/toji/processing/steamed_rice_element.rb
|
168
156
|
- lib/toji/product.rb
|
169
|
-
- lib/toji/product/
|
157
|
+
- lib/toji/product/schedule_factory.rb
|
158
|
+
- lib/toji/progress.rb
|
159
|
+
- lib/toji/progress/base_progress.rb
|
160
|
+
- lib/toji/progress/base_state.rb
|
161
|
+
- lib/toji/progress/builder.rb
|
162
|
+
- lib/toji/progress/graph.rb
|
163
|
+
- lib/toji/progress/graph/ab.rb
|
164
|
+
- lib/toji/progress/graph/bmd.rb
|
165
|
+
- lib/toji/progress/graph/multi_progress_note.rb
|
166
|
+
- lib/toji/progress/graph/progress_note.rb
|
167
|
+
- lib/toji/progress/koji_progress.rb
|
168
|
+
- lib/toji/progress/koji_state.rb
|
169
|
+
- lib/toji/progress/moromi_progress.rb
|
170
|
+
- lib/toji/progress/moromi_state.rb
|
171
|
+
- lib/toji/progress/moto_progress.rb
|
172
|
+
- lib/toji/progress/moto_state.rb
|
173
|
+
- lib/toji/progress/progress.rb
|
174
|
+
- lib/toji/progress/state.rb
|
175
|
+
- lib/toji/progress/state/baume_to_nihonshudo.rb
|
176
|
+
- lib/toji/progress/state/nihonshudo_to_baume.rb
|
170
177
|
- lib/toji/recipe.rb
|
171
178
|
- lib/toji/recipe/ab_expect.rb
|
172
179
|
- lib/toji/recipe/action.rb
|
173
180
|
- lib/toji/recipe/step.rb
|
181
|
+
- lib/toji/schedule.rb
|
182
|
+
- lib/toji/schedule/action_schedule.rb
|
183
|
+
- lib/toji/schedule/base.rb
|
184
|
+
- lib/toji/schedule/kake_schedule.rb
|
185
|
+
- lib/toji/schedule/koji_schedule.rb
|
186
|
+
- lib/toji/schedule/rice_schedule.rb
|
187
|
+
- lib/toji/utils.rb
|
174
188
|
- lib/toji/version.rb
|
175
189
|
- toji.gemspec
|
176
190
|
homepage: https://github.com/yoshida-eth0/ruby-toji
|
@@ -195,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
195
209
|
- !ruby/object:Gem::Version
|
196
210
|
version: '0'
|
197
211
|
requirements: []
|
198
|
-
rubygems_version: 3.
|
212
|
+
rubygems_version: 3.0.4
|
199
213
|
signing_key:
|
200
214
|
specification_version: 4
|
201
215
|
summary: Management tools for brewing japanese sake.
|