pandoc-ruby 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +5 -0
- data/LICENSE +20 -0
- data/README.markdown +64 -0
- data/Rakefile +56 -0
- data/VERSION +1 -0
- data/lib/pandoc-ruby.rb +55 -0
- data/pandoc-ruby.gemspec +54 -0
- data/test/pandoc-ruby_test.rb +52 -0
- data/test/test.md +3 -0
- data/test/test_helper.rb +10 -0
- metadata +76 -0
data/.document
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 William Melody
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.markdown
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
# PandocRuby
|
2
|
+
|
3
|
+
Wrapper for [Pandoc](http://johnmacfarlane.net/pandoc/), a Haskell library with command line tools for converting one markup format to another.
|
4
|
+
|
5
|
+
Pandoc can read markdown and (subsets of) reStructuredText, HTML, and LaTeX, and it can write markdown, reStructuredText, HTML, LaTeX, ConTeXt, PDF, RTF, DocBook XML, OpenDocument XML, ODT, GNU Texinfo, MediaWiki markup, groff man pages, and S5 HTML slide shows
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
First, make sure to [install Pandoc](http://johnmacfarlane.net/pandoc/#installing-pandoc).
|
10
|
+
|
11
|
+
Next, install PandocRuby from gemcutter.
|
12
|
+
|
13
|
+
gem install gemcutter
|
14
|
+
gem tumble
|
15
|
+
gem install pandoc-ruby
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
@converter = PandocRuby.new('/some/file.md', :from => :markdown, :to => :rst)
|
20
|
+
puts @converter.convert
|
21
|
+
|
22
|
+
This takes the the Markdown formatted file and converts it to reStructuredText.
|
23
|
+
|
24
|
+
You can also use the `#convert` class method:
|
25
|
+
|
26
|
+
puts PandocRuby.convert('/some/file.md', :from => :markdown, :to => :html)
|
27
|
+
|
28
|
+
Another also: you get a `#to_s`, for somewhat nicer use in Rails views.
|
29
|
+
|
30
|
+
... helper file ...
|
31
|
+
def format(text)
|
32
|
+
PandocRuby.convert(text)
|
33
|
+
end
|
34
|
+
|
35
|
+
... view file ...
|
36
|
+
<%= format text %>
|
37
|
+
|
38
|
+
The default behavior follows the pandoc executable's behavior, converting markdown to html. To specify options, simply pass options as a hash to the initializer. Pandoc's wrapper executables can also be used by passing the executable name as the second argument. For example,
|
39
|
+
|
40
|
+
PandocRuby.new('/some/file.html', 'html2markdown')
|
41
|
+
|
42
|
+
will use Pandoc's `html2markdown` wrapper.
|
43
|
+
|
44
|
+
Assumes pandoc executables are in the path. If not, set their location
|
45
|
+
with `PandocRuby.bin_path = '/path/to/bin'`
|
46
|
+
|
47
|
+
For more information on Pandoc, see the [Pandoc documentation](http://johnmacfarlane.net/pandoc/) or run `man pandoc`.
|
48
|
+
|
49
|
+
Pretty much everything in the gem was derived directly from [Albino](http://github.com/github/albino).
|
50
|
+
|
51
|
+
## Note on Patches/Pull Requests
|
52
|
+
|
53
|
+
* Fork the project.
|
54
|
+
* Make your feature addition or bug fix.
|
55
|
+
* Add tests for it. This is important so I don't break it in a
|
56
|
+
future version unintentionally.
|
57
|
+
* Commit, do not mess with rakefile, version, or history.
|
58
|
+
(if you want to have your own version, that is fine but
|
59
|
+
bump version in a commit by itself I can ignore when I pull)
|
60
|
+
* Send me a pull request. Bonus points for topic branches.
|
61
|
+
|
62
|
+
## Copyright
|
63
|
+
|
64
|
+
Copyright (c) 2009 William Melody. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "pandoc-ruby"
|
8
|
+
gem.summary = %Q{PandocRuby}
|
9
|
+
gem.description = %Q{Ruby wrapper for Pandoc}
|
10
|
+
gem.email = "wmelody@gmail.com"
|
11
|
+
gem.homepage = "http://github.com/autodata/pandoc-ruby"
|
12
|
+
gem.authors = ["William Melody"]
|
13
|
+
gem.add_development_dependency "thoughtbot-shoulda"
|
14
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
15
|
+
end
|
16
|
+
rescue LoadError
|
17
|
+
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
18
|
+
end
|
19
|
+
|
20
|
+
require 'rake/testtask'
|
21
|
+
Rake::TestTask.new(:test) do |test|
|
22
|
+
test.libs << 'lib' << 'test'
|
23
|
+
test.pattern = 'test/**/*_test.rb'
|
24
|
+
test.verbose = true
|
25
|
+
end
|
26
|
+
|
27
|
+
begin
|
28
|
+
require 'rcov/rcovtask'
|
29
|
+
Rcov::RcovTask.new do |test|
|
30
|
+
test.libs << 'test'
|
31
|
+
test.pattern = 'test/**/*_test.rb'
|
32
|
+
test.verbose = true
|
33
|
+
end
|
34
|
+
rescue LoadError
|
35
|
+
task :rcov do
|
36
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
task :test => :check_dependencies
|
41
|
+
|
42
|
+
task :default => :test
|
43
|
+
|
44
|
+
require 'rake/rdoctask'
|
45
|
+
Rake::RDocTask.new do |rdoc|
|
46
|
+
if File.exist?('VERSION')
|
47
|
+
version = File.read('VERSION')
|
48
|
+
else
|
49
|
+
version = ""
|
50
|
+
end
|
51
|
+
|
52
|
+
rdoc.rdoc_dir = 'rdoc'
|
53
|
+
rdoc.title = "pandoc-ruby #{version}"
|
54
|
+
rdoc.rdoc_files.include('README*')
|
55
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
56
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.2
|
data/lib/pandoc-ruby.rb
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
require 'open4'
|
2
|
+
|
3
|
+
class PandocRuby
|
4
|
+
@@bin_path = nil
|
5
|
+
EXECUTABLES = %W[
|
6
|
+
pandoc
|
7
|
+
markdown2pdf
|
8
|
+
html2markdown
|
9
|
+
hsmarkdown
|
10
|
+
]
|
11
|
+
|
12
|
+
def self.bin_path=(path)
|
13
|
+
@@bin_path = bin_path
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.convert(*args)
|
17
|
+
new(*args).convert
|
18
|
+
end
|
19
|
+
|
20
|
+
def initialize(target, *args)
|
21
|
+
@target = File.exists?(target) ? File.read(target) : target rescue target
|
22
|
+
if args[0] && !args[0].respond_to?(:merge) && EXECUTABLES.include?(args[0])
|
23
|
+
@executable = args[0]
|
24
|
+
else
|
25
|
+
@executable = 'pandoc'
|
26
|
+
end
|
27
|
+
@options = args.last.respond_to?(:merge) ? args.last : {}
|
28
|
+
end
|
29
|
+
|
30
|
+
def execute(command)
|
31
|
+
pid, stdin, stdout, stderr = Open4.popen4(command)
|
32
|
+
stdin.puts @target
|
33
|
+
stdin.close
|
34
|
+
stdout.read.strip
|
35
|
+
end
|
36
|
+
|
37
|
+
def convert
|
38
|
+
if @@bin_path
|
39
|
+
execute File.join(@@bin_path, @executable) + convert_options
|
40
|
+
else
|
41
|
+
execute @executable + convert_options
|
42
|
+
end
|
43
|
+
end
|
44
|
+
alias_method :to_s, :convert
|
45
|
+
|
46
|
+
def convert_options
|
47
|
+
@options.inject('') do |string, (flag, value)|
|
48
|
+
if flag.to_s.length == 1
|
49
|
+
string + " -#{flag} #{value}"
|
50
|
+
else
|
51
|
+
string + " --#{flag}=#{value}"
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
data/pandoc-ruby.gemspec
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{pandoc-ruby}
|
8
|
+
s.version = "0.0.2"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["William Melody"]
|
12
|
+
s.date = %q{2009-10-12}
|
13
|
+
s.description = %q{Ruby wrapper for Pandoc}
|
14
|
+
s.email = %q{wmelody@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.markdown"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.markdown",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"lib/pandoc-ruby.rb",
|
27
|
+
"pandoc-ruby.gemspec",
|
28
|
+
"test/pandoc-ruby_test.rb",
|
29
|
+
"test/test.md",
|
30
|
+
"test/test_helper.rb"
|
31
|
+
]
|
32
|
+
s.homepage = %q{http://github.com/autodata/pandoc-ruby}
|
33
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
34
|
+
s.require_paths = ["lib"]
|
35
|
+
s.rubygems_version = %q{1.3.5}
|
36
|
+
s.summary = %q{PandocRuby}
|
37
|
+
s.test_files = [
|
38
|
+
"test/pandoc-ruby_test.rb",
|
39
|
+
"test/test_helper.rb"
|
40
|
+
]
|
41
|
+
|
42
|
+
if s.respond_to? :specification_version then
|
43
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
44
|
+
s.specification_version = 3
|
45
|
+
|
46
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
47
|
+
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
48
|
+
else
|
49
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
50
|
+
end
|
51
|
+
else
|
52
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
require 'mocha'
|
3
|
+
|
4
|
+
class PandocRubyTest < Test::Unit::TestCase
|
5
|
+
|
6
|
+
def setup
|
7
|
+
@file = File.join(File.dirname(__FILE__), 'test.md')
|
8
|
+
@converter = PandocRuby.new(@file, :t => :rst)
|
9
|
+
end
|
10
|
+
|
11
|
+
should "convert mimic default behavior" do
|
12
|
+
converter = PandocRuby.new(@file)
|
13
|
+
assert converter.expects(:execute).with('pandoc').returns(true)
|
14
|
+
converter.convert
|
15
|
+
end
|
16
|
+
|
17
|
+
should "accept short options" do
|
18
|
+
assert @converter.expects(:execute).with('pandoc -t rst').returns(true)
|
19
|
+
@converter.convert
|
20
|
+
end
|
21
|
+
|
22
|
+
should "accept long options" do
|
23
|
+
converter = PandocRuby.new(@file, :to => :rst)
|
24
|
+
assert converter.expects(:execute).with('pandoc --to=rst').returns(true)
|
25
|
+
converter.convert
|
26
|
+
end
|
27
|
+
|
28
|
+
should "accept optional executable" do
|
29
|
+
converter = PandocRuby.new(@file, 'html2markdown')
|
30
|
+
assert converter.expects(:execute).with('html2markdown').returns(true)
|
31
|
+
converter.convert
|
32
|
+
end
|
33
|
+
|
34
|
+
should "not accept non-pandoc optional executable" do
|
35
|
+
converter = PandocRuby.new(@file, 'ls')
|
36
|
+
assert converter.expects(:execute).with('pandoc').returns(true)
|
37
|
+
converter.convert
|
38
|
+
end
|
39
|
+
|
40
|
+
should "work with strings" do
|
41
|
+
converter = PandocRuby.new('## this is a title')
|
42
|
+
assert_match %r(h2), converter.convert
|
43
|
+
end
|
44
|
+
|
45
|
+
should "alias to_s" do
|
46
|
+
assert_equal @converter.convert, @converter.to_s
|
47
|
+
end
|
48
|
+
|
49
|
+
should "have convert class method" do
|
50
|
+
assert_equal @converter.convert, PandocRuby.convert(@file, :t => :rst)
|
51
|
+
end
|
52
|
+
end
|
data/test/test.md
ADDED
data/test/test_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pandoc-ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- William Melody
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-10-12 00:00:00 -05:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: thoughtbot-shoulda
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description: Ruby wrapper for Pandoc
|
26
|
+
email: wmelody@gmail.com
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- LICENSE
|
33
|
+
- README.markdown
|
34
|
+
files:
|
35
|
+
- .document
|
36
|
+
- .gitignore
|
37
|
+
- LICENSE
|
38
|
+
- README.markdown
|
39
|
+
- Rakefile
|
40
|
+
- VERSION
|
41
|
+
- lib/pandoc-ruby.rb
|
42
|
+
- pandoc-ruby.gemspec
|
43
|
+
- test/pandoc-ruby_test.rb
|
44
|
+
- test/test.md
|
45
|
+
- test/test_helper.rb
|
46
|
+
has_rdoc: true
|
47
|
+
homepage: http://github.com/autodata/pandoc-ruby
|
48
|
+
licenses: []
|
49
|
+
|
50
|
+
post_install_message:
|
51
|
+
rdoc_options:
|
52
|
+
- --charset=UTF-8
|
53
|
+
require_paths:
|
54
|
+
- lib
|
55
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: "0"
|
60
|
+
version:
|
61
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: "0"
|
66
|
+
version:
|
67
|
+
requirements: []
|
68
|
+
|
69
|
+
rubyforge_project:
|
70
|
+
rubygems_version: 1.3.5
|
71
|
+
signing_key:
|
72
|
+
specification_version: 3
|
73
|
+
summary: PandocRuby
|
74
|
+
test_files:
|
75
|
+
- test/pandoc-ruby_test.rb
|
76
|
+
- test/test_helper.rb
|