wicked_pdf 0.9.8 → 0.9.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d43f635fb31fbe719908c988f8bb42ebc0b6e777
4
- data.tar.gz: 25f0e915235ca7007cd20fb5bfb94107e38539b3
3
+ metadata.gz: 0a1482d80e1e4b1070ca38775352135129f7e9e3
4
+ data.tar.gz: c139bc30695696650a86b136f8b733f90a8ff799
5
5
  SHA512:
6
- metadata.gz: bcc4d2b23469cc89e24d38325b22bb4a494c97c3f1087b03a657a5fc4b1bff49c75627faf98740c1cea3f7beba1a2ff19a9926fea97998697386ceef7b499f7c
7
- data.tar.gz: 86788c652cada2dce61ec796b7b7673b13faca27eb11d9c2cd2b52586cc6b86cbee39ce80b872dbf1012635526f1a5e0b650245e37f63fc409f62490e3a2c903
6
+ metadata.gz: ac6ccde7c4071159c55d754883a81c0efd4e83bb399558626a8daff2883df10fd8d034c541ca36f34a3845d8472c8a92bf811febe35174a475b97fea2c480f38
7
+ data.tar.gz: d0e69a04197d337331ca25335590aba4cdf364c6215e3ee445d1887b50942d084cd465c5aa7850798daeb3692d568042e8e5b37fa598fec38d1f67a046984f52
@@ -0,0 +1,20 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.swp
19
+ test/dummy/log/*.log
20
+ gemfiles/*.lock
@@ -0,0 +1,40 @@
1
+ language:
2
+ - ruby
3
+ bundler_args: --verbose
4
+ rvm:
5
+ - 1.9.2
6
+ - 1.9.3
7
+ - 2.0.0
8
+ gemfile:
9
+ - gemfiles/3.0.gemfile
10
+ - gemfiles/3.1.gemfile
11
+ - gemfiles/3.2.gemfile
12
+ before_script:
13
+ - bundle list
14
+ - sudo apt-get install -y wkhtmltopdf
15
+ - "export DISPLAY=:99.0"
16
+ - "sh -e /etc/init.d/xvfb start"
17
+ env: WKHTMLTOPDF_BIN=/usr/bin/wkhtmltopdf
18
+ script:
19
+ - bundle exec rake dummy_generate
20
+ - bundle exec rake test
21
+ matrix:
22
+ include:
23
+ - rvm: 1.8.7
24
+ before_install:
25
+ - gem update --system 1.8.25
26
+ - gem --version
27
+ gemfile: gemfiles/2.3.gemfile
28
+ - rvm: 1.9.3
29
+ gemfile: gemfiles/4.0.gemfile
30
+ - rvm: 1.9.3
31
+ gemfile: gemfiles/rails_edge.gemfile
32
+ - rvm: 2.0.0
33
+ gemfile: gemfiles/4.0.gemfile
34
+ - rvm: 2.0.0
35
+ gemfile: gemfiles/rails_edge.gemfile
36
+ allow_failures:
37
+ - rvm: 1.9.3
38
+ gemfile: gemfiles/rails_edge.gemfile
39
+ - rvm: 2.0.0
40
+ gemfile: gemfiles/rails_edge.gemfile
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
@@ -1,5 +1,7 @@
1
- Copyright (c) 2008 Miles Z. Sterret
2
-
1
+ Copyright (c) 2008 Miles Z. Sterrett
2
+
3
+ MIT License
4
+
3
5
  Permission is hereby granted, free of charge, to any person obtaining
4
6
  a copy of this software and associated documentation files (the
5
7
  "Software"), to deal in the Software without restriction, including
@@ -7,10 +9,10 @@ without limitation the rights to use, copy, modify, merge, publish,
7
9
  distribute, sublicense, and/or sell copies of the Software, and to
8
10
  permit persons to whom the Software is furnished to do so, subject to
9
11
  the following conditions:
10
-
12
+
11
13
  The above copyright notice and this permission notice shall be
12
14
  included in all copies or substantial portions of the Software.
13
-
15
+
14
16
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
17
  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
18
  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
data/README.md CHANGED
@@ -308,6 +308,14 @@ However, the wicked_pdf_* helpers will use file:/// paths for assets when using
308
308
 
309
309
  You may have noticed: this plugin is heavily inspired by the PrinceXML plugin [princely](http://github.com/mbleigh/princely/tree/master). PrinceXML's cost was prohibitive for me. So, with a little help from some friends (thanks [jqr](http://github.com/jqr)), I tracked down wkhtmltopdf, and here we are.
310
310
 
311
+ ### Contributing
312
+
313
+ 1. Fork it
314
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
315
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
316
+ 4. Push to the branch (`git push origin my-new-feature`)
317
+ 5. Create new Pull Request
318
+
311
319
  ### Awesome Peoples
312
320
 
313
321
  Also, thanks to [unixmonkey](https://github.com/Unixmonkey), [galdomedia](http://github.com/galdomedia), [jcrisp](http://github.com/jcrisp), [lleirborras](http://github.com/lleirborras), [tiennou](http://github.com/tiennou), and everyone else for all their hard work and patience with my delays in merging in their enhancements.
data/Rakefile CHANGED
@@ -2,6 +2,7 @@ require 'rake'
2
2
  require 'rake/testtask'
3
3
  require 'rdoc/task'
4
4
  require 'rails/version'
5
+ require 'bundler/gem_tasks'
5
6
 
6
7
  desc 'Default: run unit tests.'
7
8
  task :default => :test
@@ -0,0 +1,8 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem 'rdoc'
4
+ gem 'rails', '~> 2.3.0'
5
+ gem 'rake', '~> 0.9.2'
6
+ gem 'ruby-prof', '~> 0.11.3'
7
+ gem 'wicked_pdf', :path => '../'
8
+ gemspec :path => '../'
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem 'rdoc'
4
+ gem 'rails', '~> 3.0.0'
5
+ gem 'sqlite3'
6
+ gem 'wicked_pdf', :path => '../'
7
+ gemspec :path => '../'
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem 'rdoc'
4
+ gem 'rails', '~> 3.1.0'
5
+ gem 'sqlite3'
6
+ gem 'wicked_pdf', :path => '../'
7
+ gemspec :path => '../'
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem 'rdoc'
4
+ gem 'rails', '~> 3.2.0'
5
+ gem 'wicked_pdf', :path => '../'
6
+ gemspec :path => '../'
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem 'rdoc'
4
+ gem 'rails', '~> 4.0.0'
5
+ gem 'wicked_pdf', :path => '../'
6
+ gemspec :path => '../'
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem 'rdoc'
4
+ gem 'rails', :git => "https://github.com/rails/rails.git"
5
+ gem 'wicked_pdf', :path => '../'
6
+ gemspec :path => '../'
data/init.rb ADDED
@@ -0,0 +1,2 @@
1
+ require 'wicked_pdf'
2
+ require 'wicked_pdf_tempfile'
@@ -4,7 +4,12 @@
4
4
  require 'logger'
5
5
  require 'digest/md5'
6
6
  require 'rbconfig'
7
- require RbConfig::CONFIG['target_os'] == 'mingw32' && !(RUBY_VERSION =~ /1.9/) ? 'win32/open3' : 'open3'
7
+
8
+ if (RbConfig::CONFIG['target_os'] =~ /mswin|mingw/) && (RUBY_VERSION < '1.9')
9
+ require 'win32/open3'
10
+ else
11
+ require 'open3'
12
+ end
8
13
 
9
14
  begin
10
15
  require 'active_support/core_ext/module/attribute_accessors'
@@ -18,10 +23,10 @@ rescue LoadError
18
23
  require 'active_support/core_ext/blank'
19
24
  end
20
25
 
21
- require 'wicked_pdf_version'
22
- require 'wicked_pdf_railtie'
23
- require 'wicked_pdf_tempfile'
24
- require 'wicked_pdf_middleware'
26
+ require 'wicked_pdf/version'
27
+ require 'wicked_pdf/railtie'
28
+ require 'wicked_pdf/tempfile'
29
+ require 'wicked_pdf/middleware'
25
30
 
26
31
  class WickedPdf
27
32
  DEFAULT_BINARY_VERSION = Gem::Version.new('0.9.9')
@@ -89,7 +94,7 @@ class WickedPdf
89
94
  end
90
95
 
91
96
  def on_windows?
92
- RbConfig::CONFIG['target_os'] == 'mingw32'
97
+ RbConfig::CONFIG['target_os'] =~ /mswin|mingw/
93
98
  end
94
99
 
95
100
  def print_command(cmd)
@@ -1,6 +1,6 @@
1
1
  module PdfHelper
2
2
  require 'wicked_pdf'
3
- require 'wicked_pdf_tempfile'
3
+ require 'tempfile'
4
4
 
5
5
  def self.included(base)
6
6
  # Protect from trying to augment modules that appear
@@ -1,5 +1,5 @@
1
- require 'pdf_helper'
2
- require 'wicked_pdf_helper'
1
+ require 'wicked_pdf/pdf_helper'
2
+ require 'wicked_pdf/wicked_pdf_helper'
3
3
 
4
4
  if defined?(Rails)
5
5
 
@@ -0,0 +1,3 @@
1
+ class WickedPdf
2
+ VERSION = '0.9.9'
3
+ end
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'wicked_pdf/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "wicked_pdf"
8
+ spec.version = WickedPdf::VERSION
9
+ spec.authors = [ 'Miles Z. Sterrett' ]
10
+ spec.email = 'miles.sterrett@gmail.com'
11
+ spec.summary = 'PDF generator (from HTML) gem for Ruby on Rails'
12
+ spec.homepage = 'https://github.com/mileszs/wicked_pdf'
13
+ spec.license = 'MIT'
14
+ spec.date = Time.now.strftime('%Y-%m-%d')
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_dependency 'rails'
22
+ spec.add_development_dependency 'bundler', '~> 1.3'
23
+ spec.add_development_dependency 'rake'
24
+ spec.add_development_dependency 'sqlite3'
25
+
26
+ spec.description = <<desc
27
+ Wicked PDF uses the shell utility wkhtmltopdf to serve a PDF file to a user from HTML.
28
+ In other words, rather than dealing with a PDF generation DSL of some sort,
29
+ you simply write an HTML view as you would normally, and let Wicked take care of the hard stuff.
30
+ desc
31
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wicked_pdf
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.8
4
+ version: 0.9.9
5
5
  platform: ruby
6
6
  authors:
7
- - Miles Z. Sterret
7
+ - Miles Z. Sterrett
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-09 00:00:00.000000000 Z
11
+ date: 2013-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.3'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.3'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: rake
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -61,24 +75,39 @@ executables: []
61
75
  extensions: []
62
76
  extra_rdoc_files: []
63
77
  files:
78
+ - .gitignore
79
+ - .travis.yml
80
+ - Gemfile
81
+ - LICENSE.txt
64
82
  - README.md
65
83
  - Rakefile
66
- - MIT-LICENSE
67
- - lib/generators/wicked_pdf_generator.rb
68
- - lib/pdf_helper.rb
69
- - lib/wicked_pdf.rb
70
- - lib/wicked_pdf_helper.rb
71
- - lib/wicked_pdf_middleware.rb
72
- - lib/wicked_pdf_railtie.rb
73
- - lib/wicked_pdf_tempfile.rb
74
- - lib/wicked_pdf_version.rb
84
+ - gemfiles/2.3.gemfile
85
+ - gemfiles/3.0.gemfile
86
+ - gemfiles/3.1.gemfile
87
+ - gemfiles/3.2.gemfile
88
+ - gemfiles/4.0.gemfile
89
+ - gemfiles/rails_edge.gemfile
75
90
  - generators/wicked_pdf/templates/wicked_pdf.rb
76
91
  - generators/wicked_pdf/wicked_pdf_generator.rb
92
+ - init.rb
93
+ - lib/generators/wicked_pdf_generator.rb
94
+ - lib/wicked_pdf.rb
95
+ - lib/wicked_pdf/middleware.rb
96
+ - lib/wicked_pdf/pdf_helper.rb
97
+ - lib/wicked_pdf/railtie.rb
98
+ - lib/wicked_pdf/tempfile.rb
99
+ - lib/wicked_pdf/version.rb
100
+ - lib/wicked_pdf/wicked_pdf_helper.rb
101
+ - test/dummy/README.rdoc
102
+ - test/dummy/Rakefile
77
103
  - test/dummy/app/assets/javascripts/application.js
78
104
  - test/dummy/app/assets/stylesheets/application.css
79
105
  - test/dummy/app/controllers/application_controller.rb
80
106
  - test/dummy/app/helpers/application_helper.rb
107
+ - test/dummy/app/mailers/.gitkeep
108
+ - test/dummy/app/models/.gitkeep
81
109
  - test/dummy/app/views/layouts/application.html.erb
110
+ - test/dummy/config.ru
82
111
  - test/dummy/config/application.rb
83
112
  - test/dummy/config/boot.rb
84
113
  - test/dummy/config/database.yml
@@ -94,16 +123,14 @@ files:
94
123
  - test/dummy/config/initializers/wrap_parameters.rb
95
124
  - test/dummy/config/locales/en.yml
96
125
  - test/dummy/config/routes.rb
97
- - test/dummy/config.ru
98
126
  - test/dummy/db/test.sqlite3
127
+ - test/dummy/lib/assets/.gitkeep
128
+ - test/dummy/log/.gitkeep
99
129
  - test/dummy/log/development.log
100
- - test/dummy/log/test.log
101
130
  - test/dummy/public/404.html
102
131
  - test/dummy/public/422.html
103
132
  - test/dummy/public/500.html
104
133
  - test/dummy/public/favicon.ico
105
- - test/dummy/Rakefile
106
- - test/dummy/README.rdoc
107
134
  - test/dummy/script/rails
108
135
  - test/fixtures/document_with_long_line.html
109
136
  - test/fixtures/wicked.css
@@ -111,8 +138,10 @@ files:
111
138
  - test/functional/wicked_pdf_helper_test.rb
112
139
  - test/test_helper.rb
113
140
  - test/unit/wicked_pdf_test.rb
141
+ - wicked_pdf.gemspec
114
142
  homepage: https://github.com/mileszs/wicked_pdf
115
- licenses: []
143
+ licenses:
144
+ - MIT
116
145
  metadata: {}
117
146
  post_install_message:
118
147
  rdoc_options: []
@@ -130,16 +159,21 @@ required_rubygems_version: !ruby/object:Gem::Requirement
130
159
  version: '0'
131
160
  requirements: []
132
161
  rubyforge_project:
133
- rubygems_version: 2.0.14
162
+ rubygems_version: 2.0.3
134
163
  signing_key:
135
164
  specification_version: 4
136
165
  summary: PDF generator (from HTML) gem for Ruby on Rails
137
166
  test_files:
167
+ - test/dummy/README.rdoc
168
+ - test/dummy/Rakefile
138
169
  - test/dummy/app/assets/javascripts/application.js
139
170
  - test/dummy/app/assets/stylesheets/application.css
140
171
  - test/dummy/app/controllers/application_controller.rb
141
172
  - test/dummy/app/helpers/application_helper.rb
173
+ - test/dummy/app/mailers/.gitkeep
174
+ - test/dummy/app/models/.gitkeep
142
175
  - test/dummy/app/views/layouts/application.html.erb
176
+ - test/dummy/config.ru
143
177
  - test/dummy/config/application.rb
144
178
  - test/dummy/config/boot.rb
145
179
  - test/dummy/config/database.yml
@@ -155,16 +189,14 @@ test_files:
155
189
  - test/dummy/config/initializers/wrap_parameters.rb
156
190
  - test/dummy/config/locales/en.yml
157
191
  - test/dummy/config/routes.rb
158
- - test/dummy/config.ru
159
192
  - test/dummy/db/test.sqlite3
193
+ - test/dummy/lib/assets/.gitkeep
194
+ - test/dummy/log/.gitkeep
160
195
  - test/dummy/log/development.log
161
- - test/dummy/log/test.log
162
196
  - test/dummy/public/404.html
163
197
  - test/dummy/public/422.html
164
198
  - test/dummy/public/500.html
165
199
  - test/dummy/public/favicon.ico
166
- - test/dummy/Rakefile
167
- - test/dummy/README.rdoc
168
200
  - test/dummy/script/rails
169
201
  - test/fixtures/document_with_long_line.html
170
202
  - test/fixtures/wicked.css
@@ -1,3 +0,0 @@
1
- class WickedPdf
2
- VERSION = '0.9.8'
3
- end
@@ -1,138 +0,0 @@
1
-  (0.2ms) begin transaction
2
- ----------------------------------------------------------
3
- WickedPdfTest: test_should_extract_new_wkhtmltopdf_version
4
- ----------------------------------------------------------
5
-  (0.1ms) rollback transaction
6
-  (0.1ms) begin transaction
7
- ----------------------------------------------------------
8
- WickedPdfTest: test_should_extract_old_wkhtmltopdf_version
9
- ----------------------------------------------------------
10
-  (0.0ms) rollback transaction
11
-  (0.0ms) begin transaction
12
- ----------------------------------------------------------------------------
13
- WickedPdfTest: test_should_extract_wkhtmltopdf_version_with_nondigit_symbols
14
- ----------------------------------------------------------------------------
15
-  (0.0ms) rollback transaction
16
-  (0.0ms) begin transaction
17
- ---------------------------------------------------------------------
18
- WickedPdfTest: test_should_fallback_to_default_version_on_parse_error
19
- ---------------------------------------------------------------------
20
-  (0.0ms) rollback transaction
21
-  (0.0ms) begin transaction
22
- ----------------------------------------------------------
23
- WickedPdfTest: test_should_generate_PDF_from_html_document
24
- ----------------------------------------------------------
25
-  (0.2ms) rollback transaction
26
-  (0.1ms) begin transaction
27
- --------------------------------------------------------------------------
28
- WickedPdfTest: test_should_generate_PDF_from_html_document_with_long_lines
29
- --------------------------------------------------------------------------
30
-  (0.2ms) begin transaction
31
- ----------------------------------------------------------
32
- WickedPdfTest: test_should_extract_new_wkhtmltopdf_version
33
- ----------------------------------------------------------
34
-  (0.1ms) rollback transaction
35
-  (0.0ms) begin transaction
36
- ----------------------------------------------------------
37
- WickedPdfTest: test_should_extract_old_wkhtmltopdf_version
38
- ----------------------------------------------------------
39
-  (0.0ms) rollback transaction
40
-  (0.0ms) begin transaction
41
- ----------------------------------------------------------------------------
42
- WickedPdfTest: test_should_extract_wkhtmltopdf_version_with_nondigit_symbols
43
- ----------------------------------------------------------------------------
44
-  (0.0ms) rollback transaction
45
-  (0.0ms) begin transaction
46
- ---------------------------------------------------------------------
47
- WickedPdfTest: test_should_fallback_to_default_version_on_parse_error
48
- ---------------------------------------------------------------------
49
-  (0.0ms) rollback transaction
50
-  (0.0ms) begin transaction
51
- ----------------------------------------------------------
52
- WickedPdfTest: test_should_generate_PDF_from_html_document
53
- ----------------------------------------------------------
54
-  (0.2ms) rollback transaction
55
-  (0.1ms) begin transaction
56
- --------------------------------------------------------------------------
57
- WickedPdfTest: test_should_generate_PDF_from_html_document_with_long_lines
58
- --------------------------------------------------------------------------
59
-  (0.2ms) begin transaction
60
- ----------------------------------------------------------
61
- WickedPdfTest: test_should_extract_new_wkhtmltopdf_version
62
- ----------------------------------------------------------
63
-  (0.1ms) rollback transaction
64
-  (0.1ms) begin transaction
65
- ----------------------------------------------------------
66
- WickedPdfTest: test_should_extract_old_wkhtmltopdf_version
67
- ----------------------------------------------------------
68
-  (0.0ms) rollback transaction
69
-  (0.0ms) begin transaction
70
- ----------------------------------------------------------------------------
71
- WickedPdfTest: test_should_extract_wkhtmltopdf_version_with_nondigit_symbols
72
- ----------------------------------------------------------------------------
73
-  (0.0ms) rollback transaction
74
-  (0.0ms) begin transaction
75
- ---------------------------------------------------------------------
76
- WickedPdfTest: test_should_fallback_to_default_version_on_parse_error
77
- ---------------------------------------------------------------------
78
-  (0.0ms) rollback transaction
79
-  (0.0ms) begin transaction
80
- ----------------------------------------------------------
81
- WickedPdfTest: test_should_generate_PDF_from_html_document
82
- ----------------------------------------------------------
83
-  (0.2ms) rollback transaction
84
-  (0.1ms) begin transaction
85
- --------------------------------------------------------------------------
86
- WickedPdfTest: test_should_generate_PDF_from_html_document_with_long_lines
87
- --------------------------------------------------------------------------
88
-  (0.2ms) rollback transaction
89
-  (0.0ms) begin transaction
90
- ----------------------------------------------------------
91
- WickedPdfTest: test_should_parse_header_and_footer_options
92
- ----------------------------------------------------------
93
-  (0.0ms) rollback transaction
94
-  (0.0ms) begin transaction
95
- ------------------------------------------------
96
- WickedPdfTest: test_should_parse_margins_options
97
- ------------------------------------------------
98
-  (0.0ms) rollback transaction
99
-  (0.0ms) begin transaction
100
- ----------------------------------------------
101
- WickedPdfTest: test_should_parse_other_options
102
- ----------------------------------------------
103
-  (0.0ms) rollback transaction
104
-  (0.0ms) begin transaction
105
- ------------------------------------------------
106
- WickedPdfTest: test_should_parse_outline_options
107
- ------------------------------------------------
108
-  (0.0ms) rollback transaction
109
-  (0.0ms) begin transaction
110
- --------------------------------------------
111
- WickedPdfTest: test_should_parse_toc_options
112
- --------------------------------------------
113
-  (0.0ms) rollback transaction
114
-  (0.0ms) begin transaction
115
- ----------------------------------------------------------------------
116
- WickedPdfTest: test_should_raise_exception_when_no_path_to_wkhtmltopdf
117
- ----------------------------------------------------------------------
118
-  (0.0ms) rollback transaction
119
-  (0.0ms) begin transaction
120
- --------------------------------------------------------------------
121
- WickedPdfTest: test_should_raise_exception_when_pdf_generation_fails
122
- --------------------------------------------------------------------
123
-  (0.1ms) rollback transaction
124
-  (0.0ms) begin transaction
125
- -----------------------------------------------------------------------------
126
- WickedPdfTest: test_should_raise_exception_when_wkhtmltopdf_is_not_executable
127
- -----------------------------------------------------------------------------
128
-  (0.0ms) rollback transaction
129
-  (0.0ms) begin transaction
130
- -------------------------------------------------------------------------
131
- WickedPdfTest: test_should_raise_exception_when_wkhtmltopdf_path_is_wrong
132
- -------------------------------------------------------------------------
133
-  (0.0ms) rollback transaction
134
-  (0.0ms) begin transaction
135
- ------------------------------------------------------------
136
- WickedPdfTest: test_should_set_Default_version_on_initialize
137
- ------------------------------------------------------------
138
-  (0.0ms) rollback transaction