pandoc-ruby 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/README.markdown +2 -2
  2. data/Rakefile +1 -1
  3. data/VERSION +1 -1
  4. data/pandoc-ruby.gemspec +4 -4
  5. metadata +25 -14
@@ -36,7 +36,7 @@ Other arguments are simply converted into command line options, accepting symbol
36
36
 
37
37
  is equivalent to
38
38
 
39
- pandoc -s -f markdown --to=rst --no-wrap --table-of-contents /some/file.html
39
+ echo "# Markdown Title" | pandoc -s -f markdown --to=rst --no-wrap --table-of-contents
40
40
 
41
41
  Also provided are `#to_[writer]` instance methods for each of the writers, and these can also accept options:
42
42
 
@@ -63,7 +63,7 @@ Available format readers and writers are available in the `PandocRuby::READERS`
63
63
 
64
64
  For more information on Pandoc, see the [Pandoc documentation](http://johnmacfarlane.net/pandoc/) or run `man pandoc` ([also available here](http://johnmacfarlane.net/pandoc/pandoc.1.html)).
65
65
 
66
- If you'd prefer a pure-Ruby extended markdown interpreter that can output a few different formats, take a look at [Maruku](http://maruku.rubyforge.org/). If you want to use the full reStructuredText syntax from within Ruby, check out [RbST](http://rdoc.info/projects/autodata/rbst), a docutils wrapper.
66
+ If you'd prefer a pure-Ruby extended markdown interpreter that can output a few different formats, take a look at [Maruku](http://maruku.rubyforge.org/). If you want to use the full reStructuredText syntax from within Ruby, check out [RbST](http://rdoc.info/projects/alphabetum/rbst), a docutils wrapper.
67
67
 
68
68
  This gem was inspired by [Albino](http://github.com/github/albino). For a slightly different approach to using Pandoc with Ruby, see [Pandoku](http://github.com/dahlia/pandoku).
69
69
 
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ begin
8
8
  gem.summary = %Q{PandocRuby}
9
9
  gem.description = %Q{Ruby wrapper for Pandoc}
10
10
  gem.email = "wmelody@gmail.com"
11
- gem.homepage = "http://rdoc.info/projects/autodata/pandoc-ruby"
11
+ gem.homepage = "http://rdoc.info/projects/alphabetum/pandoc-ruby"
12
12
  gem.authors = ["William Melody"]
13
13
  gem.add_development_dependency "shoulda"
14
14
  gem.add_development_dependency "mocha"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.0
1
+ 0.4.1
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{pandoc-ruby}
8
- s.version = "0.4.0"
8
+ s.version = "0.4.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["William Melody"]
12
- s.date = %q{2010-02-10}
12
+ s.date = %q{2010-03-29}
13
13
  s.description = %q{Ruby wrapper for Pandoc}
14
14
  s.email = %q{wmelody@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -32,10 +32,10 @@ Gem::Specification.new do |s|
32
32
  "test/test_helper.rb",
33
33
  "test/test_pandoc-ruby.rb"
34
34
  ]
35
- s.homepage = %q{http://rdoc.info/projects/autodata/pandoc-ruby}
35
+ s.homepage = %q{http://rdoc.info/projects/alphabetum/pandoc-ruby}
36
36
  s.rdoc_options = ["--charset=UTF-8"]
37
37
  s.require_paths = ["lib"]
38
- s.rubygems_version = %q{1.3.5}
38
+ s.rubygems_version = %q{1.3.6}
39
39
  s.summary = %q{PandocRuby}
40
40
  s.test_files = [
41
41
  "test/benchmark.rb",
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pandoc-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 4
8
+ - 1
9
+ version: 0.4.1
5
10
  platform: ruby
6
11
  authors:
7
12
  - William Melody
@@ -9,29 +14,33 @@ autorequire:
9
14
  bindir: bin
10
15
  cert_chain: []
11
16
 
12
- date: 2010-02-10 00:00:00 -06:00
17
+ date: 2010-03-29 00:00:00 -05:00
13
18
  default_executable:
14
19
  dependencies:
15
20
  - !ruby/object:Gem::Dependency
16
21
  name: shoulda
17
- type: :development
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
20
24
  requirements:
21
25
  - - ">="
22
26
  - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
23
29
  version: "0"
24
- version:
30
+ type: :development
31
+ version_requirements: *id001
25
32
  - !ruby/object:Gem::Dependency
26
33
  name: mocha
27
- type: :development
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
34
+ prerelease: false
35
+ requirement: &id002 !ruby/object:Gem::Requirement
30
36
  requirements:
31
37
  - - ">="
32
38
  - !ruby/object:Gem::Version
39
+ segments:
40
+ - 0
33
41
  version: "0"
34
- version:
42
+ type: :development
43
+ version_requirements: *id002
35
44
  description: Ruby wrapper for Pandoc
36
45
  email: wmelody@gmail.com
37
46
  executables: []
@@ -57,7 +66,7 @@ files:
57
66
  - test/test_helper.rb
58
67
  - test/test_pandoc-ruby.rb
59
68
  has_rdoc: true
60
- homepage: http://rdoc.info/projects/autodata/pandoc-ruby
69
+ homepage: http://rdoc.info/projects/alphabetum/pandoc-ruby
61
70
  licenses: []
62
71
 
63
72
  post_install_message:
@@ -69,18 +78,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
69
78
  requirements:
70
79
  - - ">="
71
80
  - !ruby/object:Gem::Version
81
+ segments:
82
+ - 0
72
83
  version: "0"
73
- version:
74
84
  required_rubygems_version: !ruby/object:Gem::Requirement
75
85
  requirements:
76
86
  - - ">="
77
87
  - !ruby/object:Gem::Version
88
+ segments:
89
+ - 0
78
90
  version: "0"
79
- version:
80
91
  requirements: []
81
92
 
82
93
  rubyforge_project:
83
- rubygems_version: 1.3.5
94
+ rubygems_version: 1.3.6
84
95
  signing_key:
85
96
  specification_version: 3
86
97
  summary: PandocRuby