ffnpdf 0.0.2 → 0.0.3

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.
data/README.md CHANGED
@@ -58,8 +58,10 @@ This command
58
58
 
59
59
  This command does only the second step of the Build i.e. converts `combined.md` to `combined.pdf`.
60
60
 
61
- ## Troubleshooting
61
+ ## Known Issues
62
62
 
63
- **Table of Contents don't match the actual pages of the chapters.**
63
+ **Line following a horizontal line (<hr>) is missing**
64
64
 
65
- [This is a LaTeX issue](http://tex.stackexchange.com/a/30946). Just rerun the `ffnpdf convert` command to rebuild the PDF.
65
+ This is a problem with FF.net's rendering of stories, especially in older ones.
66
+
67
+ At the moment, the only fix is to manually edit the `.md` files to add the missing lines.
data/lib/ffnpdf/story.rb CHANGED
@@ -68,6 +68,7 @@ module Ffnpdf
68
68
  Dir.chdir @story_id
69
69
 
70
70
  tempfile = File.new("temp.html", "w")
71
+ puts "pulling first chapter"
71
72
  pull = HTTParty.get(story_url)
72
73
  doc = Nokogiri::HTML(pull.body)
73
74
  doc.css(".storytext")[0].children.each do |paragraph|
@@ -91,6 +92,7 @@ module Ffnpdf
91
92
  append_header_to_ch1
92
93
 
93
94
  (2..chapters).each do |chapter|
95
+ puts "pulling chapter #{chapter}"
94
96
  tempfile = File.new("temp.html", "w")
95
97
  tempfile.puts "<h2>Chapter #{chapter}</h2>"
96
98
  pull = HTTParty.get("#{story_url}#{chapter}/")
@@ -172,8 +174,8 @@ $body$
172
174
  def generate_title_page
173
175
  title_page = File.new("0000.md", "w")
174
176
  contents = <<-CONTENTS
175
- \\thispagestyle{empty}
176
177
  \\maketitle
178
+ \\pagenumbering{roman}
177
179
  \\tableofcontents
178
180
 
179
181
  CONTENTS
@@ -183,6 +185,9 @@ $body$
183
185
 
184
186
  def append_header_to_ch1
185
187
  chapter1 = File.new("0001.temp", "w")
188
+ chapter1.puts "\\pagenumbering{arabic}"
189
+ chapter1.puts "\\setcounter{page}{1}"
190
+ chapter1.puts
186
191
  chapter1.puts "\#\# Chapter 1"
187
192
  chapter1.puts
188
193
  IO.foreach("0001.md") do |line|
@@ -200,6 +205,7 @@ $body$
200
205
  end
201
206
 
202
207
  def combine_mds
208
+ puts "combining chapters"
203
209
  combined = File.new("#{@story_id}/combined.md", "w")
204
210
  chapter_mds.each do |chapter|
205
211
  IO.foreach("#{chapter}") do |line|
@@ -1,3 +1,3 @@
1
1
  module Ffnpdf
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -9,6 +9,7 @@ describe Ffnpdf::Converter do
9
9
  Ffnpdf::Converter.exec("rm temp.txt")
10
10
  Ffnpdf::Converter.exec("pwd > temp.txt")
11
11
  File.exists?("temp.txt").should == true
12
+ Ffnpdf::Converter.exec("rm temp.txt")
12
13
  end
13
14
  end
14
15
  end
@@ -120,7 +120,7 @@ describe Ffnpdf::Story do
120
120
 
121
121
  after :each do
122
122
  if File.directory?("0000001")
123
- #FileUtils.rm_rf("0000001")
123
+ FileUtils.rm_rf("0000001")
124
124
  end
125
125
  end
126
126
 
data/spec/ffnpdf_spec.rb CHANGED
@@ -2,7 +2,7 @@ require 'spec_helper'
2
2
 
3
3
  describe Ffnpdf do
4
4
  it "has the correct version" do
5
- Ffnpdf::VERSION.should == "0.0.1"
5
+ Ffnpdf::VERSION.should == "0.0.3"
6
6
  end
7
7
  end
8
8
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffnpdf
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-02-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
16
- requirement: &79274890 !ruby/object:Gem::Requirement
16
+ requirement: &69865690 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *79274890
24
+ version_requirements: *69865690
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: test_notifier
27
- requirement: &79272240 !ruby/object:Gem::Requirement
27
+ requirement: &69865320 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '0'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *79272240
35
+ version_requirements: *69865320
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: autotest
38
- requirement: &79270640 !ruby/object:Gem::Requirement
38
+ requirement: &69864940 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: '0'
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *79270640
46
+ version_requirements: *69864940
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: nokogiri
49
- requirement: &79269170 !ruby/object:Gem::Requirement
49
+ requirement: &69864590 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ! '>='
@@ -54,10 +54,10 @@ dependencies:
54
54
  version: '0'
55
55
  type: :development
56
56
  prerelease: false
57
- version_requirements: *79269170
57
+ version_requirements: *69864590
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: httparty
60
- requirement: &79268340 !ruby/object:Gem::Requirement
60
+ requirement: &69864260 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
63
  - - ! '>='
@@ -65,10 +65,10 @@ dependencies:
65
65
  version: '0'
66
66
  type: :development
67
67
  prerelease: false
68
- version_requirements: *79268340
68
+ version_requirements: *69864260
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: nokogiri
71
- requirement: &79267380 !ruby/object:Gem::Requirement
71
+ requirement: &69863850 !ruby/object:Gem::Requirement
72
72
  none: false
73
73
  requirements:
74
74
  - - ! '>='
@@ -76,10 +76,10 @@ dependencies:
76
76
  version: '0'
77
77
  type: :runtime
78
78
  prerelease: false
79
- version_requirements: *79267380
79
+ version_requirements: *69863850
80
80
  - !ruby/object:Gem::Dependency
81
81
  name: httparty
82
- requirement: &79266680 !ruby/object:Gem::Requirement
82
+ requirement: &69863410 !ruby/object:Gem::Requirement
83
83
  none: false
84
84
  requirements:
85
85
  - - ! '>='
@@ -87,7 +87,7 @@ dependencies:
87
87
  version: '0'
88
88
  type: :runtime
89
89
  prerelease: false
90
- version_requirements: *79266680
90
+ version_requirements: *69863410
91
91
  description: Scrapes a story off FF.net, converts it to Markdown, and turns it to
92
92
  PDF with LaTeX
93
93
  email: