latex_document 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 17aab20bc284ccbeaf84f8d44b4c5b1b7745615a
4
- data.tar.gz: 6afac59b9210f3d095b1578dc2023b95c951610e
3
+ metadata.gz: 577207d3a8f66433011b2aede9588f40de8869cd
4
+ data.tar.gz: ef7a9cb8fa7e38e06489e1242e826d7bcee92e0e
5
5
  SHA512:
6
- metadata.gz: 450b21470a0eb3388a57462a5f9c799fb2ab019a03d7f168b02dd2fa647665ca2442ce1a12f8cae7ea66467ded8698b0724a277e233c0c818ff9aafe33673b4e
7
- data.tar.gz: 6aad7c83e4b40618d9cafdc15e063b27a1520caea7524d88b7af538462b2c26621712d3182a7887111bf388b46471f492fb6fcc809c5775c595b2155106171ea
6
+ metadata.gz: 9a3728ac990fab7484a0872590223708bbe583e6f3573b3b18121161b6d332cd00c814e8b4544cb0ec9fa323436d0467e7889f653172da5a52523c7973d40073
7
+ data.tar.gz: 4f24f58ff9c191cf0543645736533db84f40fd9073356bc2976cb7201e3a51cfe11ffb284b9a4df566b196cd9dcb112db7f3a81295231a6b2dee670e91fa7d56
@@ -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
@@ -1,3 +1,3 @@
1
1
  module LatexDocument
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: latex_document
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dustin Morrill