legal_markdown 0.1.5 → 0.2.0

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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: legal_markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.2.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,45 +9,35 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-03-03 00:00:00.000000000 Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
15
- name: roman-numerals
16
- requirement: !ruby/object:Gem::Requirement
17
- none: false
18
- requirements:
19
- - - ! '>='
20
- - !ruby/object:Gem::Version
21
- version: '0'
22
- type: :runtime
23
- prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
- requirements:
27
- - - ! '>='
28
- - !ruby/object:Gem::Version
29
- version: '0'
30
- description: ! " This gem will parse YAML Front Matter of Markdown Documents. Typically,
12
+ date: 2013-07-08 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: ! ' This gem will parse YAML Front Matter of Markdown Documents. Typically,
31
15
  this gem would be called with a md renderer, such as Pandoc, that would turn the
32
16
  md into a document such as a .pdf file or a .docx file. By combining this pre-processing
33
17
  with a markdown renderer, you can ensure that both the structured content and the
34
18
  structured styles necessary for your firm or organization are more strictly enforced.
35
- Plus you won't have to deal with Word any longer, and every lawyer should welcome
36
- that. Why? Because Word is awful. \n"
19
+ Plus you won''t have to deal with Word any longer, and every lawyer should welcome
20
+ that. Why? Because Word is awful.
21
+
22
+ '
37
23
  email: caseykuhlman@watershedlegal
38
24
  executables:
39
- - md2legal
25
+ - legal2md
40
26
  extensions: []
41
27
  extra_rdoc_files: []
42
28
  files:
43
29
  - .gitignore
30
+ - .ruby-gemset
31
+ - .ruby-version
44
32
  - Gemfile
45
33
  - LICENSE
46
34
  - README.md
47
35
  - Rakefile
48
- - bin/md2legal
36
+ - bin/legal2md
49
37
  - legal_markdown.gemspec
50
38
  - lib/legal_markdown.rb
39
+ - lib/legal_markdown/make_yaml_frontmatter.rb
40
+ - lib/legal_markdown/roman-numerals.rb
51
41
  - lib/legal_markdown/version.rb
52
42
  homepage: http://github.com/compleatang/legal-markdown
53
43
  licenses: []
@@ -63,7 +53,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
63
53
  version: '0'
64
54
  segments:
65
55
  - 0
66
- hash: -2257058454526902014
56
+ hash: 4167443837518545164
67
57
  required_rubygems_version: !ruby/object:Gem::Requirement
68
58
  none: false
69
59
  requirements:
@@ -72,7 +62,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
72
62
  version: '0'
73
63
  segments:
74
64
  - 0
75
- hash: -2257058454526902014
65
+ hash: 4167443837518545164
76
66
  requirements: []
77
67
  rubyforge_project:
78
68
  rubygems_version: 1.8.25
data/bin/md2legal DELETED
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # == USAGE
4
- # md2legal file.md
5
-
6
- require 'legal_markdown'
7
- LegalMarkdown.markdown_to_legal(ARGV)