chapmanchri_quotemachine2 0.2.4 → 0.2.5
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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/chapmanchri_quotemachine2.rb +1 -6
- data/lib/chapmanchri_quotemachine2/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 209743b7757216b39f36f2a9722f14d61bda80b302919f3cc82aa0a9d6486231
|
|
4
|
+
data.tar.gz: ae63ea70ca5f883c30304b420d50182f9aa6038499de60957ae28d1930dba65f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b53e90e1a430f651dcc366291a7ec9b36065856748077cfd95728203b603bf5894be2cb7e3a6c4cdd143eecf2561989f12e5596fcddf94cac654a9da21908b9
|
|
7
|
+
data.tar.gz: ef2f3871286927d06afa6143809c7cf7b8dcd7493445e1a9b121268965ed974f2689d9332e742f75b3106684b33e0e63060d6ffe0e2d78032daeaebdba384304
|
data/Gemfile.lock
CHANGED
|
@@ -115,7 +115,7 @@ def show_entire_verse
|
|
|
115
115
|
@poem[@stanza_current].each_with_index do |segment, i|
|
|
116
116
|
if i > 0
|
|
117
117
|
if i == @section_current
|
|
118
|
-
print_verse = print_verse +
|
|
118
|
+
print_verse = print_verse + show_current_section
|
|
119
119
|
else
|
|
120
120
|
print_verse = print_verse + "<br><br>" + segment
|
|
121
121
|
end
|
|
@@ -146,11 +146,6 @@ def clear_screen
|
|
|
146
146
|
end
|
|
147
147
|
|
|
148
148
|
def show_section
|
|
149
|
-
# puts @poem[stanza][section_num]
|
|
150
|
-
# puts @poem[pick_stanza][pick_section]
|
|
151
|
-
# stanza = pick_stanza
|
|
152
|
-
# @stanza_current = stanza
|
|
153
|
-
# @section_current = pick_section(stanza)
|
|
154
149
|
@poem[@stanza_current][@section_current]
|
|
155
150
|
end
|
|
156
151
|
|