lyp-win 0.3.0 → 0.3.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/bin/install_release.sh +1 -1
- data/lib/lyp/etc/lyp.ly +0 -3
- data/lib/lyp/lilypond.rb +5 -7
- data/lib/lyp/system.rb +1 -1
- data/lib/lyp/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 548bf1aec3730d747d797cfff7f947ff3cabd73a
|
4
|
+
data.tar.gz: 5ead4fbb024fdca33db526cab5d7651d06302b31
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5de2eb91046c04e0f6ef983e0356b074a8000b16fd643f2cb8bc4629b3f53c7438eadc84df4ea72c40f4ecff56481baa15732f4ab2237b86e60087390f31f71
|
7
|
+
data.tar.gz: 15f41f76805248b92b83da04ce01e36c2100bd533c037016c0dc1f1dfe8fb899eeaeaac88877c20ea1e02d6cf8576c109128e25b2db61d9c5754a744be61c031
|
data/bin/install_release.sh
CHANGED
data/lib/lyp/etc/lyp.ly
CHANGED
data/lib/lyp/lilypond.rb
CHANGED
@@ -6,14 +6,16 @@ require 'ruby-progressbar'
|
|
6
6
|
module Lyp::Lilypond
|
7
7
|
class << self
|
8
8
|
def compile(argv, opts = {})
|
9
|
-
|
10
|
-
|
9
|
+
unless argv.last == '-'
|
10
|
+
fn = Lyp.wrap(argv.pop, opts)
|
11
|
+
argv << fn
|
12
|
+
end
|
11
13
|
|
12
14
|
invoke(argv, opts)
|
13
15
|
end
|
14
16
|
|
15
17
|
def invoke(argv, opts = {})
|
16
|
-
lilypond =
|
18
|
+
lilypond = current_lilypond
|
17
19
|
|
18
20
|
case opts[:mode]
|
19
21
|
when :system
|
@@ -23,10 +25,6 @@ module Lyp::Lilypond
|
|
23
25
|
end
|
24
26
|
end
|
25
27
|
|
26
|
-
def detect_use_version_argument(argv)
|
27
|
-
nil
|
28
|
-
end
|
29
|
-
|
30
28
|
def default_lilypond
|
31
29
|
Lyp::Settings['lilypond/default']
|
32
30
|
end
|
data/lib/lyp/system.rb
CHANGED
data/lib/lyp/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lyp-win
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sharon Rosner
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-02-
|
11
|
+
date: 2016-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httpclient
|