gly 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/gly.rb +4 -1
- data/lib/gly/cli.rb +71 -8
- data/lib/gly/document.rb +20 -8
- data/lib/gly/document_gabc_convertor.rb +10 -2
- data/lib/gly/exceptions.rb +16 -0
- data/lib/gly/exceptions.rb~ +3 -0
- data/lib/gly/gabc_convertor.rb +29 -11
- data/lib/gly/gly_convertor.rb +52 -0
- data/lib/gly/gly_convertor.rb~ +11 -0
- data/lib/gly/glyfy_cli.rb~ +92 -0
- data/lib/gly/headers.rb +3 -1
- data/lib/gly/lister.rb +41 -6
- data/lib/gly/lyrics.rb +7 -7
- data/lib/gly/markup.rb +15 -0
- data/lib/gly/markup.rb~ +11 -0
- data/lib/gly/parser.rb +65 -23
- data/lib/gly/preview_builder.rb +13 -4
- data/lib/gly/preview_generator.rb +44 -23
- data/lib/gly/{parsed_score.rb → score.rb} +1 -1
- data/lib/gly/templates/lualatex_document.tex +11 -11
- data/tests/examples.rb +27 -7
- data/tests/examples/gly/expected/block_lyrics.gabc +1 -1
- data/tests/examples/gly/expected/block_lyrics.gabc~ +2 -0
- data/tests/examples/gly/expected/block_music.gabc +2 -0
- data/tests/examples/gly/expected/block_music.gabc~ +4 -0
- data/tests/examples/gly/expected/blocks.gabc +3 -0
- data/tests/examples/gly/expected/differentia_final.gabc +2 -0
- data/tests/examples/gly/expected/empty_lyric_syllable.gabc +2 -0
- data/tests/examples/gly/expected/empty_lyric_syllable.gabc~ +1 -0
- data/tests/examples/gly/expected/explicit_lyrics.gabc +1 -1
- data/tests/examples/gly/expected/header_colon.gabc +3 -0
- data/tests/examples/gly/expected/header_colon.gabc~ +3 -0
- data/tests/examples/gly/expected/header_empty.gabc +2 -0
- data/tests/examples/gly/expected/header_empty.gabc~ +2 -0
- data/tests/examples/gly/expected/nabc.gabc +3 -0
- data/tests/examples/gly/expected/no_clef.gabc +2 -0
- data/tests/examples/gly/expected/no_clef.gabc~ +1 -0
- data/tests/examples/gly/expected/real1.gabc~ +15 -0
- data/tests/examples/gly/expected/unsingables.gabc +2 -0
- data/tests/examples/gly/expected/unsingables.gabc~ +2 -0
- data/tests/examples/gly/given/block_lyrics.gly~ +3 -0
- data/tests/examples/gly/given/block_music.gly +4 -0
- data/tests/examples/gly/given/blocks.gly +6 -0
- data/tests/examples/gly/given/differentia_final.gly +5 -0
- data/tests/examples/gly/given/differentia_final.gly~ +2 -0
- data/tests/examples/gly/given/empty_lyric_syllable.gly +2 -0
- data/tests/examples/gly/given/empty_lyric_syllable.gly~ +2 -0
- data/tests/examples/gly/given/header_colon.gly +3 -0
- data/tests/examples/gly/given/header_colon.gly~ +4 -0
- data/tests/examples/gly/given/header_empty.gly +1 -0
- data/tests/examples/gly/given/header_empty.gly~ +2 -0
- data/tests/examples/gly/given/nabc.gly +3 -0
- data/tests/examples/gly/given/nabc.gly~ +2 -0
- data/tests/examples/gly/given/no_clef.gly +2 -0
- data/tests/examples/gly/given/no_clef.gly~ +1 -0
- data/tests/examples/gly/given/real1.gly~ +18 -0
- data/tests/examples/gly/given/unsingables.gly +2 -0
- data/tests/examples/gly/given/unsingables.gly~ +2 -0
- data/tests/examples/glyfy/expected/header.gly +3 -0
- data/tests/examples/glyfy/expected/header.gly~ +2 -0
- data/tests/examples/glyfy/expected/simple.gly +3 -0
- data/tests/examples/glyfy/expected/simple.gly~ +2 -0
- data/tests/examples/glyfy/given/header.gabc +3 -0
- data/tests/examples/glyfy/given/simple.gabc +2 -0
- data/tests/examples/parser/markup_after_header.gly +4 -0
- data/tests/examples/parser/markups.gly +10 -0
- data/tests/examples/parser/markups.gly~ +5 -0
- data/tests/examples/parser/score_markup_order.gly +19 -0
- data/tests/examples/parser/score_markup_order.gly~ +13 -0
- data/tests/parser.rb +51 -0
- data/tests/parser.rb~ +12 -0
- data/tests/run.rb +1 -0
- data/tests/test_helper.rb +19 -0
- metadata +59 -10
- data/bin/glyfy +0 -4
- data/tests/examples.rb~ +0 -9
- data/tests/programmed_examples.rb~ +0 -14
- data/tests/run.rb~ +0 -3
- data/tests/string_helpers_test.rb~ +0 -19
data/tests/examples.rb
CHANGED
@@ -1,11 +1,9 @@
|
|
1
|
-
# test-suite dynamically created from examples in subfolders
|
2
|
-
|
3
1
|
require_relative 'test_helper'
|
4
2
|
|
5
|
-
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
3
|
+
# Examples are medium-level tests (not unittests, not end-to-end tests)
|
4
|
+
# testing parser and convertor at the same time.
|
5
|
+
# Each test case is defined by a pair of a gly and gabc file
|
6
|
+
# in directories examples/*/given and examples/*/expected.
|
9
7
|
class TestExamples < GlyTest
|
10
8
|
def self.example_test_case(given_file, expected_file)
|
11
9
|
# filename without extension
|
@@ -14,15 +12,37 @@ class TestExamples < GlyTest
|
|
14
12
|
define_method "test_#{case_name}" do
|
15
13
|
expected = File.read expected_file
|
16
14
|
File.open given_file do |fr|
|
17
|
-
|
15
|
+
# the method transform is 'deferred'
|
16
|
+
# for implementation in subclasses
|
17
|
+
given = transform fr
|
18
18
|
assert_equal expected, given
|
19
19
|
end
|
20
20
|
end
|
21
21
|
end
|
22
|
+
end
|
22
23
|
|
24
|
+
# conversion gly -> gabc
|
25
|
+
class TestGlyExamples < TestExamples
|
23
26
|
here = File.dirname __FILE__
|
24
27
|
Dir.glob(File.join(here, 'examples/gly/given/*.gly')).each do |given|
|
25
28
|
expected = given.sub('/given', '/expected').sub('.gly', '.gabc')
|
26
29
|
example_test_case given, expected
|
27
30
|
end
|
31
|
+
|
32
|
+
def transform(fr)
|
33
|
+
gly_process(fr).string
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
# conversion gabc -> gly
|
38
|
+
class TestGlyfyExamples < TestExamples
|
39
|
+
here = File.dirname __FILE__
|
40
|
+
Dir.glob(File.join(here, 'examples/glyfy/given/*.gabc')).each do |given|
|
41
|
+
expected = given.sub('/given', '/expected').sub('.gabc', '.gly')
|
42
|
+
example_test_case given, expected
|
43
|
+
end
|
44
|
+
|
45
|
+
def transform(fr)
|
46
|
+
glyfy_process(fr).string
|
47
|
+
end
|
28
48
|
end
|
@@ -1,2 +1,2 @@
|
|
1
1
|
%%
|
2
|
-
a
|
2
|
+
i(a) i(a)
|
@@ -0,0 +1 @@
|
|
1
|
+
(c4) (h) A(hih)men(gh)
|
@@ -1,2 +1,2 @@
|
|
1
1
|
%%
|
2
|
-
|
2
|
+
a(a)
|
@@ -0,0 +1 @@
|
|
1
|
+
a a
|
@@ -0,0 +1,15 @@
|
|
1
|
+
% id: f3b;
|
2
|
+
book: CAO 3907;
|
3
|
+
% cao-number: 3907;
|
4
|
+
mode: 8;
|
5
|
+
annotation: ad Ben.;
|
6
|
+
annotation: VIII g;
|
7
|
+
nabc-lines: 1;
|
8
|
+
%%
|
9
|
+
c4 g|pu gj|pe h|pu hg|cl f|pu gh|pe g|pu ,
|
10
|
+
g|pu g|pu h>|cl g|vi f|pu gh|pe h|vi ,
|
11
|
+
j|vi ji|cl- hg|cl- h|pu gf|pu h ji|pe hg|vi e|vi fg|pe g|pu ::
|
12
|
+
\lyrics
|
13
|
+
Non di -- co ti -- bi, Pe -- tre,
|
14
|
+
di -- mit -- tén -- di sép -- ti -- es,
|
15
|
+
sed us -- que sep -- tu -- a -- gí -- es sép -- ti -- es.
|
@@ -0,0 +1 @@
|
|
1
|
+
name:
|
@@ -0,0 +1 @@
|
|
1
|
+
a a
|
@@ -0,0 +1,18 @@
|
|
1
|
+
\score
|
2
|
+
id: f3b
|
3
|
+
book: CAO 3907
|
4
|
+
cao-number: 3907
|
5
|
+
mode: 8
|
6
|
+
annotation: ad Ben.
|
7
|
+
annotation: VIII g
|
8
|
+
nabc-lines: 1
|
9
|
+
% based on http://gregorianik.uni-regensburg.de/#id/785
|
10
|
+
% phrasing JP
|
11
|
+
\music
|
12
|
+
c4 g|pu gj|pe h|pu hg|cl f|pu gh|pe g|pu ,
|
13
|
+
g|pu g|pu h>|cl g|vi f|pu gh|pe h|vi ,
|
14
|
+
j|vi ji|cl- hg|cl- h|pu gf|pu h ji|pe hg|vi e|vi fg|pe g|pu ::
|
15
|
+
\lyrics
|
16
|
+
Non di -- co ti -- bi, Pe -- tre,
|
17
|
+
di -- mit -- tén -- di sép -- ti -- es,
|
18
|
+
sed us -- que sep -- tu -- a -- gí -- es sép -- ti -- es.
|
data/tests/parser.rb
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
require_relative 'test_helper'
|
2
|
+
|
3
|
+
class TestParser < GlyTest
|
4
|
+
def test_markup_after_header
|
5
|
+
doc = parse_example 'examples/parser/markup_after_header.gly'
|
6
|
+
assert_equal 1, doc.header.size
|
7
|
+
assert doc.header.has_key?('title')
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_markups
|
11
|
+
doc = parse_example 'examples/parser/markups.gly'
|
12
|
+
|
13
|
+
assert doc.scores.empty?
|
14
|
+
|
15
|
+
assert_equal "Perhaps", doc.content[0].text
|
16
|
+
assert_equal "Ave\nCaesar", doc.content[1].text
|
17
|
+
assert_equal "Ave Crux\n\nspes unica", doc.content[2].text
|
18
|
+
end
|
19
|
+
|
20
|
+
def test_score_markup_order
|
21
|
+
doc = parse_example 'examples/parser/score_markup_order.gly'
|
22
|
+
|
23
|
+
assert_equal 6, doc.content.size
|
24
|
+
|
25
|
+
assert_instance_of Gly::Score, doc.content[0]
|
26
|
+
assert_equal 'a', doc.content[0].headers['id']
|
27
|
+
|
28
|
+
assert_instance_of Gly::Markup, doc.content[1]
|
29
|
+
assert_equal 'a', doc.content[1].text
|
30
|
+
|
31
|
+
assert_instance_of Gly::Score, doc.content[2]
|
32
|
+
assert_equal 'b', doc.content[2].headers['id']
|
33
|
+
|
34
|
+
assert_instance_of Gly::Markup, doc.content[3]
|
35
|
+
assert_equal 'b', doc.content[3].text
|
36
|
+
|
37
|
+
assert_instance_of Gly::Markup, doc.content[4]
|
38
|
+
assert_equal 'c', doc.content[4].text
|
39
|
+
|
40
|
+
assert_instance_of Gly::Score, doc.content[5]
|
41
|
+
assert_equal 'c', doc.content[5].headers['id']
|
42
|
+
end
|
43
|
+
|
44
|
+
def parse_example(path)
|
45
|
+
doc = nil
|
46
|
+
File.open expand_test_path(path) do |fr|
|
47
|
+
doc = Gly::Parser.new.parse(fr)
|
48
|
+
end
|
49
|
+
doc
|
50
|
+
end
|
51
|
+
end
|
data/tests/parser.rb~
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
require_relative 'test_helper'
|
2
|
+
|
3
|
+
class TestParser < GlyTest
|
4
|
+
def test_markup_after_header
|
5
|
+
doc = nil
|
6
|
+
File.open expand_test_path('examples/parser/markup_after_header.gly') do |fr|
|
7
|
+
doc = Gly::Parser.new.parse(fr)
|
8
|
+
end
|
9
|
+
assert_equal 1, doc.header.size
|
10
|
+
assert_equal 'title', doc.header.keys.first
|
11
|
+
end
|
12
|
+
end
|
data/tests/run.rb
CHANGED
data/tests/test_helper.rb
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
$: << File.expand_path('../lib', File.dirname(__FILE__))
|
2
2
|
require 'gly'
|
3
3
|
|
4
|
+
begin
|
5
|
+
require 'grely'
|
6
|
+
rescue LoadError
|
7
|
+
end
|
8
|
+
|
4
9
|
require 'minitest/autorun'
|
5
10
|
|
6
11
|
require 'minitest/reporters'
|
@@ -14,4 +19,18 @@ class GlyTest < MiniTest::Test
|
|
14
19
|
doc = Gly::Parser.new.parse(gly_io)
|
15
20
|
Gly::GabcConvertor.new.convert(doc.scores[0])
|
16
21
|
end
|
22
|
+
|
23
|
+
def glyfy_process(gabc_io)
|
24
|
+
unless defined? GabcParser
|
25
|
+
skip 'lygre not found, cannot run glyfy tests'
|
26
|
+
end
|
27
|
+
|
28
|
+
parsing_result = GabcParser.new.parse gabc_io.read
|
29
|
+
score = parsing_result.create_score
|
30
|
+
Gly::GlyConvertor.new.convert score
|
31
|
+
end
|
32
|
+
|
33
|
+
def expand_test_path(relative)
|
34
|
+
File.expand_path(relative, File.dirname(__FILE__))
|
35
|
+
end
|
17
36
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jakub Pavlík
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-06-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -46,7 +46,6 @@ extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
48
|
- bin/gly
|
49
|
-
- bin/glyfy
|
50
49
|
- lib/gly.rb
|
51
50
|
- lib/gly.rb~
|
52
51
|
- lib/gly/cli.rb
|
@@ -57,16 +56,22 @@ files:
|
|
57
56
|
- lib/gly/document_gabc_convertor.rb~
|
58
57
|
- lib/gly/document_ly_convertor.rb
|
59
58
|
- lib/gly/document_ly_convertor.rb~
|
59
|
+
- lib/gly/exceptions.rb
|
60
|
+
- lib/gly/exceptions.rb~
|
60
61
|
- lib/gly/gabc_convertor.rb
|
61
62
|
- lib/gly/gabc_convertor.rb~
|
63
|
+
- lib/gly/gly_convertor.rb
|
64
|
+
- lib/gly/gly_convertor.rb~
|
65
|
+
- lib/gly/glyfy_cli.rb~
|
62
66
|
- lib/gly/headers.rb
|
63
67
|
- lib/gly/headers.rb~
|
64
68
|
- lib/gly/lister.rb
|
65
69
|
- lib/gly/lister.rb~
|
66
70
|
- lib/gly/lyrics.rb
|
67
71
|
- lib/gly/lyrics.rb~
|
72
|
+
- lib/gly/markup.rb
|
73
|
+
- lib/gly/markup.rb~
|
68
74
|
- lib/gly/options.rb~
|
69
|
-
- lib/gly/parsed_score.rb
|
70
75
|
- lib/gly/parsed_score.rb~
|
71
76
|
- lib/gly/parser.rb
|
72
77
|
- lib/gly/parser.rb~
|
@@ -74,17 +79,24 @@ files:
|
|
74
79
|
- lib/gly/preview_builder.rb~
|
75
80
|
- lib/gly/preview_generator.rb
|
76
81
|
- lib/gly/preview_generator.rb~
|
82
|
+
- lib/gly/score.rb
|
77
83
|
- lib/gly/string_helpers.rb
|
78
84
|
- lib/gly/string_helpers.rb~
|
79
85
|
- lib/gly/templates/lualatex_document.tex
|
80
86
|
- lib/gly/templates/lualatex_document.tex~
|
81
87
|
- tests/examples.rb
|
82
|
-
- tests/examples.rb~
|
83
88
|
- tests/examples/gly/expected/block_lyrics.gabc
|
89
|
+
- tests/examples/gly/expected/block_lyrics.gabc~
|
90
|
+
- tests/examples/gly/expected/block_music.gabc
|
91
|
+
- tests/examples/gly/expected/block_music.gabc~
|
92
|
+
- tests/examples/gly/expected/blocks.gabc
|
93
|
+
- tests/examples/gly/expected/differentia_final.gabc
|
84
94
|
- tests/examples/gly/expected/differentiae.gabc
|
85
95
|
- tests/examples/gly/expected/differentiae.gabc~
|
86
96
|
- tests/examples/gly/expected/document_header.gabc
|
87
97
|
- tests/examples/gly/expected/document_header.gabc~
|
98
|
+
- tests/examples/gly/expected/empty_lyric_syllable.gabc
|
99
|
+
- tests/examples/gly/expected/empty_lyric_syllable.gabc~
|
88
100
|
- tests/examples/gly/expected/explicit_lyrics.gabc
|
89
101
|
- tests/examples/gly/expected/explicit_lyrics.gabc~
|
90
102
|
- tests/examples/gly/expected/explicit_music.gabc
|
@@ -92,10 +104,17 @@ files:
|
|
92
104
|
- tests/examples/gly/expected/explicit_score.gabc
|
93
105
|
- tests/examples/gly/expected/force_divisio_lyrics.gabc
|
94
106
|
- tests/examples/gly/expected/header.gabc
|
107
|
+
- tests/examples/gly/expected/header_colon.gabc
|
108
|
+
- tests/examples/gly/expected/header_colon.gabc~
|
109
|
+
- tests/examples/gly/expected/header_empty.gabc
|
110
|
+
- tests/examples/gly/expected/header_empty.gabc~
|
95
111
|
- tests/examples/gly/expected/header_unofficial.gabc
|
96
112
|
- tests/examples/gly/expected/header_unofficial.gabc~
|
97
113
|
- tests/examples/gly/expected/multiline.gabc
|
98
114
|
- tests/examples/gly/expected/multiline_interlaced.gabc
|
115
|
+
- tests/examples/gly/expected/nabc.gabc
|
116
|
+
- tests/examples/gly/expected/no_clef.gabc
|
117
|
+
- tests/examples/gly/expected/no_clef.gabc~
|
99
118
|
- tests/examples/gly/expected/nonlyrical_lyrics.gabc
|
100
119
|
- tests/examples/gly/expected/nonlyrical_lyrics.gabc~
|
101
120
|
- tests/examples/gly/expected/notes_bracketted.gabc
|
@@ -103,38 +122,69 @@ files:
|
|
103
122
|
- tests/examples/gly/expected/notes_only.gabc
|
104
123
|
- tests/examples/gly/expected/notes_with_lyrics.gabc
|
105
124
|
- tests/examples/gly/expected/notes_with_lyrics.gabc~
|
125
|
+
- tests/examples/gly/expected/real1.gabc~
|
126
|
+
- tests/examples/gly/expected/unsingables.gabc
|
127
|
+
- tests/examples/gly/expected/unsingables.gabc~
|
106
128
|
- tests/examples/gly/expected/unsyllabified_lyrics.gabc
|
107
129
|
- tests/examples/gly/given/block_lyrics.gly
|
130
|
+
- tests/examples/gly/given/block_lyrics.gly~
|
131
|
+
- tests/examples/gly/given/block_music.gly
|
132
|
+
- tests/examples/gly/given/blocks.gly
|
133
|
+
- tests/examples/gly/given/differentia_final.gly
|
134
|
+
- tests/examples/gly/given/differentia_final.gly~
|
108
135
|
- tests/examples/gly/given/differentiae.gly
|
109
136
|
- tests/examples/gly/given/differentiae.gly~
|
110
137
|
- tests/examples/gly/given/document_header.gly
|
138
|
+
- tests/examples/gly/given/empty_lyric_syllable.gly
|
139
|
+
- tests/examples/gly/given/empty_lyric_syllable.gly~
|
111
140
|
- tests/examples/gly/given/explicit_lyrics.gly
|
112
141
|
- tests/examples/gly/given/explicit_music.gly
|
113
142
|
- tests/examples/gly/given/explicit_music.gly~
|
114
143
|
- tests/examples/gly/given/explicit_score.gly
|
115
144
|
- tests/examples/gly/given/force_divisio_lyrics.gly
|
116
145
|
- tests/examples/gly/given/header.gly
|
146
|
+
- tests/examples/gly/given/header_colon.gly
|
147
|
+
- tests/examples/gly/given/header_colon.gly~
|
148
|
+
- tests/examples/gly/given/header_empty.gly
|
149
|
+
- tests/examples/gly/given/header_empty.gly~
|
117
150
|
- tests/examples/gly/given/header_unofficial.gly
|
118
151
|
- tests/examples/gly/given/header_unofficial.gly~
|
119
152
|
- tests/examples/gly/given/multiline.gly
|
120
153
|
- tests/examples/gly/given/multiline_interlaced.gly
|
121
154
|
- tests/examples/gly/given/multiline_interlaced.gly~
|
155
|
+
- tests/examples/gly/given/nabc.gly
|
156
|
+
- tests/examples/gly/given/nabc.gly~
|
157
|
+
- tests/examples/gly/given/no_clef.gly
|
158
|
+
- tests/examples/gly/given/no_clef.gly~
|
122
159
|
- tests/examples/gly/given/nonlyrical_lyrics.gly
|
123
160
|
- tests/examples/gly/given/nonlyrical_lyrics.gly~
|
124
161
|
- tests/examples/gly/given/notes_bracketted.gabc~
|
125
162
|
- tests/examples/gly/given/notes_bracketted.gly
|
126
163
|
- tests/examples/gly/given/notes_only.gly
|
127
164
|
- tests/examples/gly/given/notes_with_lyrics.gly
|
165
|
+
- tests/examples/gly/given/real1.gly~
|
166
|
+
- tests/examples/gly/given/unsingables.gly
|
167
|
+
- tests/examples/gly/given/unsingables.gly~
|
128
168
|
- tests/examples/gly/given/unsyllabified_lyrics.gly
|
129
169
|
- tests/examples/gly/no_crash/document_header.gly~
|
130
170
|
- tests/examples/gly/no_crash/multiple_scores.gly
|
131
171
|
- tests/examples/gly/no_crash/multiple_scores.gly~
|
172
|
+
- tests/examples/glyfy/expected/header.gly
|
173
|
+
- tests/examples/glyfy/expected/header.gly~
|
174
|
+
- tests/examples/glyfy/expected/simple.gly
|
175
|
+
- tests/examples/glyfy/expected/simple.gly~
|
176
|
+
- tests/examples/glyfy/given/header.gabc
|
177
|
+
- tests/examples/glyfy/given/simple.gabc
|
178
|
+
- tests/examples/parser/markup_after_header.gly
|
179
|
+
- tests/examples/parser/markups.gly
|
180
|
+
- tests/examples/parser/markups.gly~
|
181
|
+
- tests/examples/parser/score_markup_order.gly
|
182
|
+
- tests/examples/parser/score_markup_order.gly~
|
132
183
|
- tests/no_crash.rb
|
133
|
-
- tests/
|
184
|
+
- tests/parser.rb
|
185
|
+
- tests/parser.rb~
|
134
186
|
- tests/run.rb
|
135
|
-
- tests/run.rb~
|
136
187
|
- tests/string_helpers_test.rb
|
137
|
-
- tests/string_helpers_test.rb~
|
138
188
|
- tests/test_helper.rb
|
139
189
|
homepage: http://github.com/igneus/gly
|
140
190
|
licenses:
|
@@ -156,9 +206,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
156
206
|
version: '0'
|
157
207
|
requirements: []
|
158
208
|
rubyforge_project:
|
159
|
-
rubygems_version: 2.
|
209
|
+
rubygems_version: 2.4.8
|
160
210
|
signing_key:
|
161
211
|
specification_version: 4
|
162
212
|
summary: Writer-friendly Gregorian notation format compiling to gabc
|
163
213
|
test_files: []
|
164
|
-
has_rdoc:
|