md2man 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 59fe54bcf46356d69451dddf8eaf5e8d29168814
4
+ data.tar.gz: 8d52d3a877c1f7cf35682c838b474a1b3806adb1
5
+ SHA512:
6
+ metadata.gz: 15eba96090956ce6504079b1371662a0162b16ffeb32af8319e9c33a9b4b82fc86be0c42e0e4bc77e5927e074b7a5d0ac037b96fa854cc22955647d491f1b40a
7
+ data.tar.gz: 3eefaf9a8f5a35e34bc3a9cfbb4be2a9b2deb4a7e8bc61cd1818bccc8b9f00bc28e889d653d0cd906274f7066889f389bf3b5882e8769b508a5a7aefa846343e
data/LICENSE CHANGED
@@ -3,6 +3,7 @@
3
3
  Copyright 2011 Suraj N. Kurapati <https://github.com/sunaku>
4
4
  Thanks to 2011 Vicent Marti <https://github.com/vmg>
5
5
  Thanks to 2012 Postmodern <https://github.com/postmodern>
6
+ Thanks to 2013 Bastien Dejean <https://github.com/baskerville>
6
7
 
7
8
  Permission to use, copy, modify, and/or distribute this software for any
8
9
  purpose with or without fee is hereby granted, provided that the above
data/README.markdown CHANGED
@@ -149,7 +149,7 @@ Add this snippet to your gemspec file:
149
149
 
150
150
  s.files += Dir['man/man?/*.?'] # UNIX man pages
151
151
  s.files += Dir['man/**/*.{html,css,js}'] # HTML man pages
152
- s.add_development_dependency 'md2man', '~> 1.4'
152
+ s.add_development_dependency 'md2man', '~> 2.0'
153
153
 
154
154
  Add this line to your Rakefile:
155
155
 
data/VERSION.markdown CHANGED
@@ -1,3 +1,21 @@
1
+ ## Version 2.0.1 (2013-08-29)
2
+
3
+ Patch:
4
+
5
+ * Use a proper CDN to access Bootstrap 2.3.2 styling in HTML output.
6
+
7
+ * Ensure that man/ directory exists for the `md2man:web` Rake task.
8
+
9
+ * Specify license in gemspec file to fix warning when building gem.
10
+
11
+ Thanks to Bastien Dejean for contributing this patch.
12
+
13
+ Other:
14
+
15
+ * Upgrade dependent gems by running `bundle update`.
16
+
17
+ * minitest 4.7.5 provides spec library via autorun.
18
+
1
19
  ## Version 2.0.0 (2013-05-05)
2
20
 
3
21
  This release renames md2man executables and libraries to highlight the fact
data/bin/md2man-html CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  =begin =======================================================================
3
3
 
4
- # MD2MAN-HTML 1 2013-05-05 2.0.0
4
+ # MD2MAN-HTML 1 2013-08-29 2.0.1
5
5
 
6
6
  ## NAME
7
7
 
data/bin/md2man-rake CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  =begin =======================================================================
3
3
 
4
- # MD2MAN-RAKE 1 2013-05-05 2.0.0
4
+ # MD2MAN-RAKE 1 2013-08-29 2.0.1
5
5
 
6
6
  ## NAME
7
7
 
data/bin/md2man-roff CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  =begin =======================================================================
3
3
 
4
- # MD2MAN-ROFF 1 2013-05-05 2.0.0
4
+ # MD2MAN-ROFF 1 2013-08-29 2.0.1
5
5
 
6
6
  ## NAME
7
7
 
@@ -1,4 +1,4 @@
1
- @import url('http://twitter.github.com/bootstrap/assets/css/bootstrap.css');
1
+ @import url('http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css');
2
2
 
3
3
  @media all {
4
4
  h1,
@@ -67,7 +67,9 @@ parse_manpage_info = lambda do |html_file_body|
67
67
  end
68
68
  end
69
69
 
70
- file 'man/index.html' => webs do |t|
70
+ directory 'man'
71
+
72
+ file 'man/index.html' => ['man'] + webs do |t|
71
73
  buffer = ['<div class="container-fluid">']
72
74
  webs.sort.group_by {|web| web.pathmap('%d').sub('man/', '') }.each do |subdir, dir_webs|
73
75
  buffer << %{<h2 id="#{subdir}">#{subdir}</h2>}
@@ -86,8 +88,8 @@ file 'man/index.html' => webs do |t|
86
88
  File.open(t.name, 'w') {|f| f << output }
87
89
  end
88
90
 
89
- file 'man/style.css' => __FILE__.pathmap('%X/style.css') do |t|
90
- cp t.prerequisites.first, t.name if t.needed?
91
+ file 'man/style.css' => ['man', __FILE__.pathmap('%X/style.css')] do |t|
92
+ cp t.prerequisites.last, t.name if t.needed?
91
93
  end
92
94
 
93
95
  mkds.zip(webs).each do |src, dst|
@@ -1,3 +1,3 @@
1
1
  module Md2Man
2
- VERSION = "2.0.0"
2
+ VERSION = "2.0.1"
3
3
  end
data/man/index.html CHANGED
@@ -2,7 +2,7 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta charset="utf-8" />
5
- <meta name="generator" content="md2man 2.0.0 https://github.com/sunaku/md2man" />
5
+ <meta name="generator" content="md2man 2.0.1 https://github.com/sunaku/md2man" />
6
6
  <title>man/index</title>
7
7
  <link rel="stylesheet" href="style.css"/>
8
8
  <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
data/man/man0/README.html CHANGED
@@ -2,7 +2,7 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta charset="utf-8" />
5
- <meta name="generator" content="md2man 2.0.0 https://github.com/sunaku/md2man" />
5
+ <meta name="generator" content="md2man 2.0.1 https://github.com/sunaku/md2man" />
6
6
  <title>README</title>
7
7
  <link rel="stylesheet" href="../style.css"/>
8
8
  <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
@@ -110,7 +110,7 @@ your_html_output = <a class="md2man-xref">engine.render(your_markdown_input)</a>
110
110
  <h4 id="Inside-a-Ruby-script">Inside a Ruby script</h4><p>Add this snippet to your gemspec file:</p>
111
111
  <pre><code>s.files += Dir[&#39;man/man?/*.?&#39;] # UNIX man pages
112
112
  s.files += Dir[&#39;man/**/*.{html,css,js}&#39;] # HTML man pages
113
- s.add_development_dependency &#39;md2man&#39;, &#39;~&gt; 1.4&#39;
113
+ s.add_development_dependency &#39;md2man&#39;, &#39;~&gt; 2.0&#39;
114
114
  </code></pre>
115
115
  <p>Add this line to your Rakefile:</p>
116
116
  <pre><code>require &#39;md2man/rakefile&#39;
@@ -149,7 +149,7 @@ Add this snippet to your gemspec file:
149
149
 
150
150
  s.files += Dir['man/man?/*.?'] # UNIX man pages
151
151
  s.files += Dir['man/**/*.{html,css,js}'] # HTML man pages
152
- s.add_development_dependency 'md2man', '~> 1.4'
152
+ s.add_development_dependency 'md2man', '~> 2.0'
153
153
 
154
154
  Add this line to your Rakefile:
155
155
 
@@ -2,12 +2,23 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta charset="utf-8" />
5
- <meta name="generator" content="md2man 2.0.0 https://github.com/sunaku/md2man" />
5
+ <meta name="generator" content="md2man 2.0.1 https://github.com/sunaku/md2man" />
6
6
  <title>VERSION</title>
7
7
  <link rel="stylesheet" href="../style.css"/>
8
8
  <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
9
9
  </head>
10
- <body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man0">man0</a>/VERSION</span></div></div><div class="container-fluid"><h2 id="Version-2-0-0-2013-05-05">Version 2.0.0 (2013-05-05)</h2><p>This release renames md2man executables and libraries to highlight the fact
10
+ <body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man0">man0</a>/VERSION</span></div></div><div class="container-fluid"><h2 id="Version-2-0-1-2013-08-29">Version 2.0.1 (2013-08-29)</h2><p>Patch:</p>
11
+ <ul>
12
+ <li><p>Use a proper CDN to access Bootstrap 2.3.2 styling in HTML output.</p></li>
13
+ <li><p>Ensure that man/ directory exists for the <code>md2man:web</code> Rake task.</p></li>
14
+ <li><p>Specify license in gemspec file to fix warning when building gem.</p><p>Thanks to Bastien Dejean for contributing this patch.</p></li>
15
+ </ul>
16
+ <p>Other:</p>
17
+ <ul>
18
+ <li><p>Upgrade dependent gems by running <code>bundle update</code>.</p></li>
19
+ <li><p>minitest 4.7.5 provides spec library via autorun.</p></li>
20
+ </ul>
21
+ <h2 id="Version-2-0-0-2013-05-05">Version 2.0.0 (2013-05-05)</h2><p>This release renames md2man executables and libraries to highlight the fact
11
22
  that md2man provides two processing pathways: one for Roff and one for HTML.</p><p>Major:</p>
12
23
  <ul>
13
24
  <li><p>Rename <a class="md2man-xref">md2man(1)</a> executable to <a class="md2man-xref" href="../man1/md2man-roff.1.html">md2man-roff(1)</a>.</p></li>
@@ -1,3 +1,21 @@
1
+ ## Version 2.0.1 (2013-08-29)
2
+
3
+ Patch:
4
+
5
+ * Use a proper CDN to access Bootstrap 2.3.2 styling in HTML output.
6
+
7
+ * Ensure that man/ directory exists for the `md2man:web` Rake task.
8
+
9
+ * Specify license in gemspec file to fix warning when building gem.
10
+
11
+ Thanks to Bastien Dejean for contributing this patch.
12
+
13
+ Other:
14
+
15
+ * Upgrade dependent gems by running `bundle update`.
16
+
17
+ * minitest 4.7.5 provides spec library via autorun.
18
+
1
19
  ## Version 2.0.0 (2013-05-05)
2
20
 
3
21
  This release renames md2man executables and libraries to highlight the fact
@@ -1,4 +1,4 @@
1
- .TH MD2MAN\-HTML 1 2013\-05\-05 2.0.0
1
+ .TH MD2MAN\-HTML 1 2013\-08\-29 2.0.1
2
2
  .SH NAME
3
3
  .PP
4
4
  md2man\-html \- convert
@@ -2,12 +2,12 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta charset="utf-8" />
5
- <meta name="generator" content="md2man 2.0.0 https://github.com/sunaku/md2man" />
5
+ <meta name="generator" content="md2man 2.0.1 https://github.com/sunaku/md2man" />
6
6
  <title>md2man-html(1) &mdash; convert md2man(5) flavored markdown(7) into HTML</title>
7
7
  <link rel="stylesheet" href="../style.css"/>
8
8
  <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
9
9
  </head>
10
- <body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/md2man-html.1</span></div></div><div class="container-fluid"><h1 id="MD2MAN-HTML-1-2013-05-05-2-0-0">MD2MAN-HTML 1 2013-05-05 2.0.0</h1><h2 id="NAME">NAME</h2><p>md2man-html - convert <a class="md2man-xref" href="../man5/md2man.5.html">md2man(5)</a> flavored <a class="md2man-xref">markdown(7)</a> into HTML</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>md2man-html</code> [<em>OPTION</em>]... [<em>FILE</em>]</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program converts <a class="md2man-xref" href="../man5/md2man.5.html">md2man(5)</a> flavored <a class="md2man-xref">markdown(7)</a> input from the given
10
+ <body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/md2man-html.1</span></div></div><div class="container-fluid"><h1 id="MD2MAN-HTML-1-2013-08-29-2-0-1">MD2MAN-HTML 1 2013-08-29 2.0.1</h1><h2 id="NAME">NAME</h2><p>md2man-html - convert <a class="md2man-xref" href="../man5/md2man.5.html">md2man(5)</a> flavored <a class="md2man-xref">markdown(7)</a> into HTML</p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>md2man-html</code> [<em>OPTION</em>]... [<em>FILE</em>]</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program converts <a class="md2man-xref" href="../man5/md2man.5.html">md2man(5)</a> flavored <a class="md2man-xref">markdown(7)</a> input from the given
11
11
  <em>FILE</em> into HTML and then prints the result to the standard output stream.
12
12
  If <em>FILE</em> is not given, then the standard input stream is read in its place.</p><h3 id="Cross-references">Cross references</h3><p>Cross references to manual pages are emitted as HTML hyperlinks that have
13
13
  <code>class=&quot;md2man-xref&quot;</code> and <code>href=&quot;../man$SECTION/$PAGE.$SECTION.html&quot;</code>
@@ -1,4 +1,4 @@
1
- .TH MD2MAN\-RAKE 1 2013\-05\-05 2.0.0
1
+ .TH MD2MAN\-RAKE 1 2013\-08\-29 2.0.1
2
2
  .SH NAME
3
3
  .PP
4
4
  md2man\-rake \- run
@@ -2,12 +2,12 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta charset="utf-8" />
5
- <meta name="generator" content="md2man 2.0.0 https://github.com/sunaku/md2man" />
5
+ <meta name="generator" content="md2man 2.0.1 https://github.com/sunaku/md2man" />
6
6
  <title>md2man-rake(1) &mdash; run rake(1) tasks from md2man(1)</title>
7
7
  <link rel="stylesheet" href="../style.css"/>
8
8
  <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
9
9
  </head>
10
- <body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/md2man-rake.1</span></div></div><div class="container-fluid"><h1 id="MD2MAN-RAKE-1-2013-05-05-2-0-0">MD2MAN-RAKE 1 2013-05-05 2.0.0</h1><h2 id="NAME">NAME</h2><p>md2man-rake - run <a class="md2man-xref">rake(1)</a> tasks from <a class="md2man-xref">md2man(1)</a></p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>md2man-rake</code> [<em>OPTION</em>]... [<em>TASK</em>]...</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program lets you run <a class="md2man-xref">rake(1)</a> tasks provided by <a class="md2man-xref">md2man(1)</a> without having
10
+ <body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/md2man-rake.1</span></div></div><div class="container-fluid"><h1 id="MD2MAN-RAKE-1-2013-08-29-2-0-1">MD2MAN-RAKE 1 2013-08-29 2.0.1</h1><h2 id="NAME">NAME</h2><p>md2man-rake - run <a class="md2man-xref">rake(1)</a> tasks from <a class="md2man-xref">md2man(1)</a></p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>md2man-rake</code> [<em>OPTION</em>]... [<em>TASK</em>]...</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program lets you run <a class="md2man-xref">rake(1)</a> tasks provided by <a class="md2man-xref">md2man(1)</a> without having
11
11
  to create a special file named <code>Rakefile</code> that contains the following snippet:</p>
12
12
  <pre><code>require &#39;md2man/rakefile&#39;
13
13
  </code></pre>
@@ -1,4 +1,4 @@
1
- .TH MD2MAN\-ROFF 1 2013\-05\-05 2.0.0
1
+ .TH MD2MAN\-ROFF 1 2013\-08\-29 2.0.1
2
2
  .SH NAME
3
3
  .PP
4
4
  md2man\-roff \- convert
@@ -2,12 +2,12 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta charset="utf-8" />
5
- <meta name="generator" content="md2man 2.0.0 https://github.com/sunaku/md2man" />
5
+ <meta name="generator" content="md2man 2.0.1 https://github.com/sunaku/md2man" />
6
6
  <title>md2man-roff(1) &mdash; convert md2man(5) flavored markdown(7) into roff(7)</title>
7
7
  <link rel="stylesheet" href="../style.css"/>
8
8
  <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
9
9
  </head>
10
- <body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/md2man-roff.1</span></div></div><div class="container-fluid"><h1 id="MD2MAN-ROFF-1-2013-05-05-2-0-0">MD2MAN-ROFF 1 2013-05-05 2.0.0</h1><h2 id="NAME">NAME</h2><p>md2man-roff - convert <a class="md2man-xref" href="../man5/md2man.5.html">md2man(5)</a> flavored <a class="md2man-xref">markdown(7)</a> into <a class="md2man-xref">roff(7)</a></p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>md2man-roff</code> [<em>OPTION</em>]... [<em>FILE</em>]</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program converts <a class="md2man-xref" href="../man5/md2man.5.html">md2man(5)</a> flavored <a class="md2man-xref">markdown(7)</a> input from the given
10
+ <body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man1">man1</a>/md2man-roff.1</span></div></div><div class="container-fluid"><h1 id="MD2MAN-ROFF-1-2013-08-29-2-0-1">MD2MAN-ROFF 1 2013-08-29 2.0.1</h1><h2 id="NAME">NAME</h2><p>md2man-roff - convert <a class="md2man-xref" href="../man5/md2man.5.html">md2man(5)</a> flavored <a class="md2man-xref">markdown(7)</a> into <a class="md2man-xref">roff(7)</a></p><h2 id="SYNOPSIS">SYNOPSIS</h2><p><code>md2man-roff</code> [<em>OPTION</em>]... [<em>FILE</em>]</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p>This program converts <a class="md2man-xref" href="../man5/md2man.5.html">md2man(5)</a> flavored <a class="md2man-xref">markdown(7)</a> input from the given
11
11
  <em>FILE</em> into <a class="md2man-xref">roff(7)</a> and then prints the result to the standard output stream.
12
12
  If <em>FILE</em> is not given, then the standard input stream is read in its place.</p><h3 id="Limitations">Limitations</h3><p>This program does not convert the following <a href="https://github.com/vmg/redcarpet">Redcarpet</a> nodes into <a class="md2man-xref">roff(7)</a>:</p>
13
13
  <ul>
data/man/man5/md2man.5 CHANGED
@@ -1,4 +1,4 @@
1
- .TH MD2MAN 5 2013\-05\-05 2.0.0
1
+ .TH MD2MAN 5 2013\-08\-29 2.0.1
2
2
  .SH NAME
3
3
  .PP
4
4
  md2man \- manual page flavoring for the
@@ -2,12 +2,12 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta charset="utf-8" />
5
- <meta name="generator" content="md2man 2.0.0 https://github.com/sunaku/md2man" />
5
+ <meta name="generator" content="md2man 2.0.1 https://github.com/sunaku/md2man" />
6
6
  <title>md2man(5) &mdash; manual page flavoring for the markdown(7) file format</title>
7
7
  <link rel="stylesheet" href="../style.css"/>
8
8
  <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
9
9
  </head>
10
- <body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man5">man5</a>/md2man.5</span></div></div><div class="container-fluid"><h1 id="MD2MAN-5-2013-05-05-2-0-0">MD2MAN 5 2013-05-05 2.0.0</h1><h2 id="NAME">NAME</h2><p>md2man - manual page flavoring for the <a class="md2man-xref">markdown(7)</a> file format</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p><a href="https://github.com/sunaku/md2man">md2man</a> makes the <a class="md2man-xref">markdown(7)</a> file format friendly for writing UNIX manual
10
+ <body><div class="navbar"><div class="navbar-inner"><span class="brand"><a href="../index.html#man5">man5</a>/md2man.5</span></div></div><div class="container-fluid"><h1 id="MD2MAN-5-2013-08-29-2-0-1">MD2MAN 5 2013-08-29 2.0.1</h1><h2 id="NAME">NAME</h2><p>md2man - manual page flavoring for the <a class="md2man-xref">markdown(7)</a> file format</p><h2 id="DESCRIPTION">DESCRIPTION</h2><p><a href="https://github.com/sunaku/md2man">md2man</a> makes the <a class="md2man-xref">markdown(7)</a> file format friendly for writing UNIX manual
11
11
  pages by extending its syntax, semantics, and assumed processing extensions.</p><h3 id="Syntax">Syntax</h3><p>md2man extends <a class="md2man-xref">markdown(7)</a> syntax by defining three kinds of paragraphs.</p>
12
12
  <pre><code>This is a
13
13
  normal
@@ -1,4 +1,4 @@
1
- # MD2MAN 5 2013-05-05 2.0.0
1
+ # MD2MAN 5 2013-08-29 2.0.1
2
2
 
3
3
  ## NAME
4
4
 
data/man/style.css CHANGED
@@ -1,4 +1,4 @@
1
- @import url('http://twitter.github.com/bootstrap/assets/css/bootstrap.css');
1
+ @import url('http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css');
2
2
 
3
3
  @media all {
4
4
  h1,
data/md2man.gemspec CHANGED
@@ -7,6 +7,7 @@ Gem::Specification.new do |s|
7
7
  s.version = Md2Man::VERSION
8
8
  s.authors,
9
9
  s.email = File.read('LICENSE').scan(/Copyright \d+ (.+) <(.+?)>/).transpose
10
+ s.license = 'ISC'
10
11
  s.homepage = 'http://github.com/sunaku/md2man'
11
12
  s.summary = 'markdown to manpage'
12
13
  s.description = 'Converts markdown documents into UNIX manual pages.'
@@ -21,7 +22,7 @@ Gem::Specification.new do |s|
21
22
 
22
23
  s.required_ruby_version = '>= 1.9.1'
23
24
  s.add_runtime_dependency 'binman', '~> 3.0'
24
- s.add_runtime_dependency 'redcarpet', '~> 2.1'
25
- s.add_development_dependency 'minitest', '~> 4.0'
26
- s.add_development_dependency 'rake', '~> 0.9.2.2'
25
+ s.add_runtime_dependency 'redcarpet', '~> 3.0'
26
+ s.add_development_dependency 'minitest', '~> 5.0'
27
+ s.add_development_dependency 'rake', '~> 10.1'
27
28
  end
data/test/test_helper.rb CHANGED
@@ -1,2 +1 @@
1
- require 'minitest/spec'
2
1
  require 'minitest/autorun'
metadata CHANGED
@@ -1,20 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: md2man
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
5
- prerelease:
4
+ version: 2.0.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Suraj N. Kurapati
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-05-06 00:00:00.000000000 Z
11
+ date: 2013-08-30 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: binman
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ~>
20
18
  - !ruby/object:Gem::Version
@@ -22,7 +20,6 @@ dependencies:
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - ~>
28
25
  - !ruby/object:Gem::Version
@@ -30,51 +27,45 @@ dependencies:
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: redcarpet
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
31
  - - ~>
36
32
  - !ruby/object:Gem::Version
37
- version: '2.1'
33
+ version: '3.0'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
38
  - - ~>
44
39
  - !ruby/object:Gem::Version
45
- version: '2.1'
40
+ version: '3.0'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: minitest
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
45
  - - ~>
52
46
  - !ruby/object:Gem::Version
53
- version: '4.0'
47
+ version: '5.0'
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
52
  - - ~>
60
53
  - !ruby/object:Gem::Version
61
- version: '4.0'
54
+ version: '5.0'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: rake
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
59
  - - ~>
68
60
  - !ruby/object:Gem::Version
69
- version: 0.9.2.2
61
+ version: '10.1'
70
62
  type: :development
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
66
  - - ~>
76
67
  - !ruby/object:Gem::Version
77
- version: 0.9.2.2
68
+ version: '10.1'
78
69
  description: Converts markdown documents into UNIX manual pages.
79
70
  email:
80
71
  - https://github.com/sunaku
@@ -125,31 +116,28 @@ files:
125
116
  - man/man1/md2man-html.1.html
126
117
  - man/style.css
127
118
  homepage: http://github.com/sunaku/md2man
128
- licenses: []
119
+ licenses:
120
+ - ISC
121
+ metadata: {}
129
122
  post_install_message:
130
123
  rdoc_options: []
131
124
  require_paths:
132
125
  - lib
133
126
  required_ruby_version: !ruby/object:Gem::Requirement
134
- none: false
135
127
  requirements:
136
- - - ! '>='
128
+ - - '>='
137
129
  - !ruby/object:Gem::Version
138
130
  version: 1.9.1
139
131
  required_rubygems_version: !ruby/object:Gem::Requirement
140
- none: false
141
132
  requirements:
142
- - - ! '>='
133
+ - - '>='
143
134
  - !ruby/object:Gem::Version
144
135
  version: '0'
145
- segments:
146
- - 0
147
- hash: 878508335261676240
148
136
  requirements: []
149
137
  rubyforge_project:
150
- rubygems_version: 1.8.25
138
+ rubygems_version: 2.0.3
151
139
  signing_key:
152
- specification_version: 3
140
+ specification_version: 4
153
141
  summary: markdown to manpage
154
142
  test_files:
155
143
  - test/md2man/html_test.rb