lyp 1.3.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -4
- 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: 740fc3de7bbd6fd400d0b05b60749a21be457748
|
4
|
+
data.tar.gz: 6253323f9eb74d6f49624aa39cc7305654da8dde
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 081d0271f29770041a28b4f2e90a0076c687df53b067891f185805a8c669f86cff869f55c5e24e94d1af8eda2305b0616c5cb6a681a8372bc36322d9fea1d5f9
|
7
|
+
data.tar.gz: 177a44664d2ff5532b0d7ca8ac70fd0daee24ab2c2a3a1ea0a08a428f464c9c8475c7461dc2393a3e9e7d8eb6970670647080a4038aa4002026c2f0ecedb6341
|
data/README.md
CHANGED
@@ -5,14 +5,16 @@
|
|
5
5
|
<a href="https://github.com/lyp-packages/index#readme">The lyp package index</a>
|
6
6
|
</p>
|
7
7
|
|
8
|
-
# lyp -
|
8
|
+
# lyp - The Lilypond Swiss-Army Knife
|
9
9
|
|
10
|
-
Use lyp to install and manage packages for Lilypond, and install and manage multiple versions of Lilypond on your machine.
|
10
|
+
Use lyp to install and manage packages for Lilypond, and install and manage multiple versions of Lilypond on your machine, and improve your Lilypond workflow.
|
11
11
|
|
12
12
|
__Code reuse__: lyp lets you install packages that act as Lilypond code libraries and can be used to enhance your Lilypond files with additional functionality. Packages can depend on other packages. Lyp resolves both direct and transitive package dependencies, and automatically selects the correct version to use for each package.
|
13
13
|
|
14
14
|
__No hassle Lilypond installation__: With lyp you can also install any version of Lilypond on your machine with a single command, without having to visit the Lilypond website, clicking a link and then copying files around. In addition, lyp lets you switch between multiple versions of Lilypond and always keep your machine up to date with the latest version.
|
15
15
|
|
16
|
+
__Tools for power users__: with lyp you can [benchmark](#lyp-benchmark) and compare the performance of multiple versions of Lilypond, [flatten](#lyp-flatten) include files, automatically recompile [modified source files](#lyp-watch), and [automatically install](#lyp-compile) package dependencies or any required version of Lilypond.
|
17
|
+
|
16
18
|
## Table of contents
|
17
19
|
|
18
20
|
- [Installation](#installation)
|
@@ -600,13 +602,13 @@ Once one or more versions of Lilypond are installed, the Lilypond command may be
|
|
600
602
|
|
601
603
|
Synopsis: `lyp accelerate`
|
602
604
|
|
603
|
-
|
605
|
+
Rewrites gem binaries for faster execution. When lyp is installed as a gem, the Rubygems system creates wrapper script files for `lyp` and `lilypond` which incur a performance penalty that adds up to 200msecs per invocation. Use this command to rewrite the gem binaries so as to improve their running time.
|
604
606
|
|
605
607
|
### lyp benchmark
|
606
608
|
|
607
609
|
Synopsis: `lyp benchmark FILE`
|
608
610
|
|
609
|
-
|
611
|
+
Benchmarks the running time of all installed versions of Lilypond using the given source file. This command accepts all Lilypond command line switches.
|
610
612
|
|
611
613
|
### lyp cleanup
|
612
614
|
|
data/lib/lyp/version.rb
CHANGED