songbook 0.5.0 → 0.5.1
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/lib/songbook/generate_song_file.rb +1 -4
- data/lib/songbook/render_song.rb +9 -9
- data/lib/songbook/song.rb +2 -5
- data/lib/songbook/verse.rb +4 -0
- data/lib/songbook/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 77a576ace791a1d2336d9a1028864b0430263bbd8ef7a7ee1fab7b3c32feead6
|
|
4
|
+
data.tar.gz: cc47254a55d12c987e451ca82aa76dfe4a054b9685f624821196cce1b8396ee5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 01c14ac68fe116b3119b4861b0b43fb4061df58dc7ca843f23f1cfb16f4b52560054c39a3e356f76975710a9080e4ce819a88d414d302e52ed24b1b2bc7f6e3f
|
|
7
|
+
data.tar.gz: 671c92a26a6f4b5c314573c156a3fcabe93ea4ea1b965947aadc4a4443ba2300fb12e16c41782d1fe724a8b0eefd6a2cc320a60fe7fb892faea45c88186f10c6
|
|
@@ -27,14 +27,11 @@ module Songbook
|
|
|
27
27
|
end
|
|
28
28
|
|
|
29
29
|
def song
|
|
30
|
-
table_width = song_data['config']['table_width'] if song_data['config']
|
|
31
|
-
|
|
32
30
|
@song ||= Song.new(
|
|
33
31
|
title: File.basename(input_path, '.yml'),
|
|
34
32
|
details: song_data['details'],
|
|
35
33
|
chords: song_data['chords'],
|
|
36
|
-
lyrics: song_data['lyrics']
|
|
37
|
-
table_width: table_width
|
|
34
|
+
lyrics: song_data['lyrics']
|
|
38
35
|
)
|
|
39
36
|
end
|
|
40
37
|
|
data/lib/songbook/render_song.rb
CHANGED
|
@@ -29,7 +29,7 @@ module Songbook
|
|
|
29
29
|
def verses_table
|
|
30
30
|
table = TTY::Table.new do |t|
|
|
31
31
|
song.verses.each do |verse|
|
|
32
|
-
t << [
|
|
32
|
+
t << [verse.formatted_title, nil]
|
|
33
33
|
|
|
34
34
|
verse.lines.each do |line|
|
|
35
35
|
t << [line.chords, line.lyrics]
|
|
@@ -48,22 +48,22 @@ module Songbook
|
|
|
48
48
|
# rubocop:enable Metrics/AbcSize, Metrics/MethodLength
|
|
49
49
|
|
|
50
50
|
def table_settings
|
|
51
|
-
{
|
|
51
|
+
{ resize: true, width: table_width }
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
def
|
|
55
|
-
|
|
56
|
-
song.table_width - chords_column_width - LYRICS_CHORDS_SEPARATOR.length,
|
|
57
|
-
max_lyrics_column_width
|
|
58
|
-
].min
|
|
54
|
+
def table_width
|
|
55
|
+
chords_column_width + LYRICS_CHORDS_SEPARATOR.length + lyrics_column_width
|
|
59
56
|
end
|
|
60
57
|
|
|
61
|
-
def
|
|
58
|
+
def lyrics_column_width
|
|
62
59
|
song.verses.flat_map(&:lines).flat_map(&:lyrics).map(&:length).max
|
|
63
60
|
end
|
|
64
61
|
|
|
65
62
|
def chords_column_width
|
|
66
|
-
|
|
63
|
+
chord_column_texts =
|
|
64
|
+
song.verses.flat_map(&:lines).flat_map(&:chords) + song.verses.map(&:formatted_title)
|
|
65
|
+
|
|
66
|
+
chord_column_texts.map(&:length).max
|
|
67
67
|
end
|
|
68
68
|
end
|
|
69
69
|
end
|
data/lib/songbook/song.rb
CHANGED
|
@@ -4,16 +4,13 @@ require_relative 'verse'
|
|
|
4
4
|
|
|
5
5
|
module Songbook
|
|
6
6
|
class Song
|
|
7
|
-
|
|
7
|
+
attr_reader :title, :details, :chords, :lyrics
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
def initialize(title:, details:, chords:, lyrics:, table_width: nil)
|
|
9
|
+
def initialize(title:, details:, chords:, lyrics:)
|
|
12
10
|
@title = title
|
|
13
11
|
@details = details
|
|
14
12
|
@chords = chords
|
|
15
13
|
@lyrics = lyrics
|
|
16
|
-
@table_width = table_width || TABLE_WIDTH
|
|
17
14
|
end
|
|
18
15
|
|
|
19
16
|
def verses
|
data/lib/songbook/verse.rb
CHANGED
data/lib/songbook/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: songbook
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- George Mendoza
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-01-
|
|
11
|
+
date: 2023-01-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tty-table
|