lyp 0.1.5 → 0.1.6
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/lyp/cli.rb +2 -2
- data/lib/lyp/lilypond.rb +1 -0
- data/lib/lyp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a0f2b4319a508c0c584f2facf8a74525635d6e01
|
|
4
|
+
data.tar.gz: 068c9dbce97d7fb071fd8f74408090924a8d3431
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27264b97b929a0e4124f806aae29b25bee95e4dcfcb489197420a781a33010ff92717f310c9c82078772c8da35f8d853f9c4f39d12683cd8054e1e4ebc87100d
|
|
7
|
+
data.tar.gz: 3075d4b04dd20b8e16b8b55764a1126b83cf6fe183e6280c7f171e691f476058c81a2035497448ca6b6f645bb4afbf54a34a4d0aa78df74c7e8930129fb996a1
|
data/lib/lyp/cli.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
require 'thor'
|
|
2
|
-
require
|
|
2
|
+
require 'lyp/version'
|
|
3
3
|
|
|
4
4
|
def lilypond_prefix(info)
|
|
5
5
|
if info[:current] && info[:default]
|
|
@@ -46,7 +46,6 @@ class Lyp::CLI < Thor
|
|
|
46
46
|
|
|
47
47
|
desc "version", "show Lyp version"
|
|
48
48
|
def version
|
|
49
|
-
require 'lyp/version'
|
|
50
49
|
$stderr.puts "Lyp #{Lyp::VERSION}"
|
|
51
50
|
end
|
|
52
51
|
|
|
@@ -98,6 +97,7 @@ class Lyp::CLI < Thor
|
|
|
98
97
|
method_option :install, aliases: '-i', type: :boolean, desc: 'Install the requested version of lilypond if not present'
|
|
99
98
|
method_option :env, aliases: '-e', type: :boolean, desc: 'Use version set by LILYPOND_VERSION environment variable'
|
|
100
99
|
def compile(*args)
|
|
100
|
+
$stderr.puts "Lyp #{Lyp::VERSION}"
|
|
101
101
|
Lyp::System.test_installed_status!
|
|
102
102
|
|
|
103
103
|
if options[:env]
|
data/lib/lyp/lilypond.rb
CHANGED
data/lib/lyp/version.rb
CHANGED