latex_document 0.1.0 → 0.1.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/latex_document +2 -2
- data/lib/latex_document/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: 577207d3a8f66433011b2aede9588f40de8869cd
|
|
4
|
+
data.tar.gz: ef7a9cb8fa7e38e06489e1242e826d7bcee92e0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a3728ac990fab7484a0872590223708bbe583e6f3573b3b18121161b6d332cd00c814e8b4544cb0ec9fa323436d0467e7889f653172da5a52523c7973d40073
|
|
7
|
+
data.tar.gz: 4f24f58ff9c191cf0543645736533db84f40fd9073356bc2976cb7201e3a51cfe11ffb284b9a4df566b196cd9dcb112db7f3a81295231a6b2dee670e91fa7d56
|
data/bin/latex_document
CHANGED
|
@@ -104,7 +104,7 @@ module LatexDocument
|
|
|
104
104
|
register(
|
|
105
105
|
Tex,
|
|
106
106
|
'tex',
|
|
107
|
-
"tex NAME [author=AUTHOR]",
|
|
107
|
+
"tex NAME [--author=AUTHOR]",
|
|
108
108
|
"Creates a new latex document with name NAME and author AUTHOR, the latter of which defaults to \"#{Tex::DEFAULT_AUTHOR}\"."
|
|
109
109
|
)
|
|
110
110
|
tasks["tex"].options = Tex.class_options
|
|
@@ -114,7 +114,7 @@ module LatexDocument
|
|
|
114
114
|
register(
|
|
115
115
|
Md,
|
|
116
116
|
'md',
|
|
117
|
-
"md NAME [author=AUTHOR]",
|
|
117
|
+
"md NAME [--author=AUTHOR]",
|
|
118
118
|
"Creates a new markdown/latex hybrid document with name NAME and author AUTHOR, the latter of which defaults to \"#{Md::DEFAULT_AUTHOR}]\"."
|
|
119
119
|
)
|
|
120
120
|
tasks["md"].options = Md.class_options
|