pdfcraft 0.0.1
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.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +65 -0
- data/Rakefile +32 -0
- data/lib/pdfcraft.rb +5 -0
- data/lib/pdfcraft/document.rb +42 -0
- data/lib/pdfcraft/pdf_renderer.rb +6 -0
- data/lib/pdfcraft/pdf_template_handler.rb +17 -0
- data/lib/pdfcraft/version.rb +3 -0
- data/lib/tasks/pdfcraft_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/home_controller.rb +25 -0
- data/test/dummy/app/helpers/application_helper.rb +7 -0
- data/test/dummy/app/views/home/_the_partial.pdf.pdfcraft +3 -0
- data/test/dummy/app/views/home/helpers.pdf.pdfcraft +1 -0
- data/test/dummy/app/views/home/index.pdf.pdfcraft +1 -0
- data/test/dummy/app/views/home/partials.pdf.pdfcraft +4 -0
- data/test/dummy/app/views/home/pdf_layout.pdf.pdfcraft +3 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +7 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +90 -0
- data/test/dummy/log/test.log +4165 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/integration/pdf_rendering_test.rb +55 -0
- data/test/pdfcraft_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +211 -0
@@ -0,0 +1,29 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the web server when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Do not eager load code on boot.
|
10
|
+
config.eager_load = false
|
11
|
+
|
12
|
+
# Show full error reports and disable caching.
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_controller.perform_caching = false
|
15
|
+
|
16
|
+
# Don't care if the mailer can't send.
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
18
|
+
|
19
|
+
# Print deprecation notices to the Rails logger.
|
20
|
+
config.active_support.deprecation = :log
|
21
|
+
|
22
|
+
# Raise an error on page load if there are pending migrations
|
23
|
+
config.active_record.migration_error = :page_load
|
24
|
+
|
25
|
+
# Debug mode disables concatenation and preprocessing of assets.
|
26
|
+
# This option may cause significant delays in view rendering with a large
|
27
|
+
# number of complex assets.
|
28
|
+
config.assets.debug = true
|
29
|
+
end
|
@@ -0,0 +1,80 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# Code is not reloaded between requests.
|
5
|
+
config.cache_classes = true
|
6
|
+
|
7
|
+
# Eager load code on boot. This eager loads most of Rails and
|
8
|
+
# your application in memory, allowing both thread web servers
|
9
|
+
# and those relying on copy on write to perform better.
|
10
|
+
# Rake tasks automatically ignore this option for performance.
|
11
|
+
config.eager_load = true
|
12
|
+
|
13
|
+
# Full error reports are disabled and caching is turned on.
|
14
|
+
config.consider_all_requests_local = false
|
15
|
+
config.action_controller.perform_caching = true
|
16
|
+
|
17
|
+
# Enable Rack::Cache to put a simple HTTP cache in front of your application
|
18
|
+
# Add `rack-cache` to your Gemfile before enabling this.
|
19
|
+
# For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
|
20
|
+
# config.action_dispatch.rack_cache = true
|
21
|
+
|
22
|
+
# Disable Rails's static asset server (Apache or nginx will already do this).
|
23
|
+
config.serve_static_assets = false
|
24
|
+
|
25
|
+
# Compress JavaScripts and CSS.
|
26
|
+
config.assets.js_compressor = :uglifier
|
27
|
+
# config.assets.css_compressor = :sass
|
28
|
+
|
29
|
+
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
30
|
+
config.assets.compile = false
|
31
|
+
|
32
|
+
# Generate digests for assets URLs.
|
33
|
+
config.assets.digest = true
|
34
|
+
|
35
|
+
# Version of your assets, change this if you want to expire all your assets.
|
36
|
+
config.assets.version = '1.0'
|
37
|
+
|
38
|
+
# Specifies the header that your server uses for sending files.
|
39
|
+
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
40
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
41
|
+
|
42
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
43
|
+
# config.force_ssl = true
|
44
|
+
|
45
|
+
# Set to :debug to see everything in the log.
|
46
|
+
config.log_level = :info
|
47
|
+
|
48
|
+
# Prepend all log lines with the following tags.
|
49
|
+
# config.log_tags = [ :subdomain, :uuid ]
|
50
|
+
|
51
|
+
# Use a different logger for distributed setups.
|
52
|
+
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
53
|
+
|
54
|
+
# Use a different cache store in production.
|
55
|
+
# config.cache_store = :mem_cache_store
|
56
|
+
|
57
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
58
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
59
|
+
|
60
|
+
# Precompile additional assets.
|
61
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
62
|
+
# config.assets.precompile += %w( search.js )
|
63
|
+
|
64
|
+
# Ignore bad email addresses and do not raise email delivery errors.
|
65
|
+
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
66
|
+
# config.action_mailer.raise_delivery_errors = false
|
67
|
+
|
68
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
69
|
+
# the I18n.default_locale when a translation can not be found).
|
70
|
+
config.i18n.fallbacks = true
|
71
|
+
|
72
|
+
# Send deprecation notices to registered listeners.
|
73
|
+
config.active_support.deprecation = :notify
|
74
|
+
|
75
|
+
# Disable automatic flushing of the log to improve performance.
|
76
|
+
# config.autoflush_log = false
|
77
|
+
|
78
|
+
# Use default logging formatter so that PID and timestamp are not suppressed.
|
79
|
+
config.log_formatter = ::Logger::Formatter.new
|
80
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
Dummy::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Do not eager load code on boot. This avoids loading your whole application
|
11
|
+
# just for the purpose of running a single test. If you are using a tool that
|
12
|
+
# preloads Rails for running tests, you may have to set it to true.
|
13
|
+
config.eager_load = false
|
14
|
+
|
15
|
+
# Configure static asset server for tests with Cache-Control for performance.
|
16
|
+
config.serve_static_assets = true
|
17
|
+
config.static_cache_control = "public, max-age=3600"
|
18
|
+
|
19
|
+
# Show full error reports and disable caching.
|
20
|
+
config.consider_all_requests_local = true
|
21
|
+
config.action_controller.perform_caching = false
|
22
|
+
|
23
|
+
# Raise exceptions instead of rendering exception templates.
|
24
|
+
config.action_dispatch.show_exceptions = false
|
25
|
+
|
26
|
+
# Disable request forgery protection in test environment.
|
27
|
+
config.action_controller.allow_forgery_protection = false
|
28
|
+
|
29
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
30
|
+
# The :test delivery method accumulates sent emails in the
|
31
|
+
# ActionMailer::Base.deliveries array.
|
32
|
+
config.action_mailer.delivery_method = :test
|
33
|
+
|
34
|
+
# Print deprecation notices to the stderr.
|
35
|
+
config.active_support.deprecation = :stderr
|
36
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format. Inflections
|
4
|
+
# are locale specific, and you may define rules for as many different
|
5
|
+
# locales as you wish. All of these examples are active by default:
|
6
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
7
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
8
|
+
# inflect.singular /^(ox)en/i, '\1'
|
9
|
+
# inflect.irregular 'person', 'people'
|
10
|
+
# inflect.uncountable %w( fish sheep )
|
11
|
+
# end
|
12
|
+
|
13
|
+
# These inflection rules are supported but not enabled by default:
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
15
|
+
# inflect.acronym 'RESTful'
|
16
|
+
# end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure your secret_key_base is kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
Dummy::Application.config.secret_key_base = '23573627e016031cbcf48f0f1b8a85d41d3e8afe382d9c4b55cd14b1986219ca972fce39ba6f79f2e8f67324d2c3f611941574999a442dfcae28c4f3971efdd2'
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
|
9
|
+
end
|
10
|
+
|
11
|
+
# To enable root element in JSON for ActiveRecord objects.
|
12
|
+
# ActiveSupport.on_load(:active_record) do
|
13
|
+
# self.include_root_in_json = true
|
14
|
+
# end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# To learn more, please read the Rails Internationalization guide
|
20
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
21
|
+
|
22
|
+
en:
|
23
|
+
hello: "Hello world"
|
@@ -0,0 +1,7 @@
|
|
1
|
+
Dummy::Application.routes.draw do
|
2
|
+
get "/home", to: "home#index", as: :home
|
3
|
+
get "/another", to: "home#another", as: :another
|
4
|
+
get "/partials", to: "home#partials", as: :partials
|
5
|
+
get "/helpers", to: "home#helpers", as: :helpers
|
6
|
+
get "/pdf_layout", to: "home#pdf_layout", as: :pdf_layout
|
7
|
+
end
|
File without changes
|
File without changes
|
@@ -0,0 +1,90 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 13:52:15 -0500
|
4
|
+
Processing by HomeController#index as PDF
|
5
|
+
Rendered home/index.pdf.erb (0.8ms)
|
6
|
+
Rendered text template (0.0ms)
|
7
|
+
Sent data contents.pdf (1.1ms)
|
8
|
+
Completed 200 OK in 37ms (Views: 36.4ms | ActiveRecord: 0.0ms)
|
9
|
+
|
10
|
+
|
11
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:17:33 -0500
|
12
|
+
Processing by HomeController#index as PDF
|
13
|
+
Rendered home/index.pdf.pdfcraft (33.5ms)
|
14
|
+
Rendered text template (0.0ms)
|
15
|
+
Sent data contents.pdf (1.1ms)
|
16
|
+
Completed 200 OK in 39ms (Views: 39.0ms | ActiveRecord: 0.0ms)
|
17
|
+
|
18
|
+
|
19
|
+
Started GET "/" for 127.0.0.1 at 2013-12-29 17:24:53 -0500
|
20
|
+
Processing by Rails::WelcomeController#index as HTML
|
21
|
+
Rendered /Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (1.8ms)
|
22
|
+
Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
|
23
|
+
|
24
|
+
|
25
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:25:00 -0500
|
26
|
+
Processing by HomeController#index as PDF
|
27
|
+
Rendered home/index.pdf.pdfcraft (31.6ms)
|
28
|
+
Rendered text template (0.0ms)
|
29
|
+
Sent data contents.pdf (1.0ms)
|
30
|
+
Completed 200 OK in 35ms (Views: 34.4ms | ActiveRecord: 0.0ms)
|
31
|
+
|
32
|
+
|
33
|
+
Started GET "/" for 127.0.0.1 at 2013-12-29 17:45:44 -0500
|
34
|
+
Processing by Rails::WelcomeController#index as HTML
|
35
|
+
Rendered /Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (1.1ms)
|
36
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
|
37
|
+
|
38
|
+
|
39
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 17:45:49 -0500
|
40
|
+
Processing by HomeController#partials as PDF
|
41
|
+
Rendered home/_the_partial.pdf.pdfcraft (4.7ms)
|
42
|
+
Rendered home/partials.pdf.pdfcraft (39.7ms)
|
43
|
+
Rendered text template (0.0ms)
|
44
|
+
Sent data contents.pdf (1.2ms)
|
45
|
+
Completed 200 OK in 44ms (Views: 43.0ms | ActiveRecord: 0.0ms)
|
46
|
+
|
47
|
+
|
48
|
+
Started GET "/" for 127.0.0.1 at 2013-12-29 18:23:22 -0500
|
49
|
+
Processing by Rails::WelcomeController#index as HTML
|
50
|
+
Rendered /Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (1.1ms)
|
51
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
52
|
+
|
53
|
+
|
54
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 18:23:29 -0500
|
55
|
+
Processing by HomeController#index as PDF
|
56
|
+
Rendered home/index.pdf.pdfcraft (38.4ms)
|
57
|
+
Rendered text template (0.0ms)
|
58
|
+
Sent data contents.pdf (1.5ms)
|
59
|
+
Completed 200 OK in 42ms (Views: 41.9ms | ActiveRecord: 0.0ms)
|
60
|
+
|
61
|
+
|
62
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 18:23:37 -0500
|
63
|
+
Processing by HomeController#another as PDF
|
64
|
+
Rendered home/index.pdf.pdfcraft (2.7ms)
|
65
|
+
Rendered text template (0.0ms)
|
66
|
+
Sent data contents.pdf (0.3ms)
|
67
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
68
|
+
|
69
|
+
|
70
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 18:23:49 -0500
|
71
|
+
Processing by HomeController#partials as PDF
|
72
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.8ms)
|
73
|
+
Rendered home/partials.pdf.pdfcraft (6.6ms)
|
74
|
+
Rendered text template (0.0ms)
|
75
|
+
Sent data contents.pdf (0.4ms)
|
76
|
+
Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
|
77
|
+
|
78
|
+
|
79
|
+
Started GET "/" for 127.0.0.1 at 2013-12-29 18:52:17 -0500
|
80
|
+
Processing by Rails::WelcomeController#index as HTML
|
81
|
+
Rendered /Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (1.0ms)
|
82
|
+
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
83
|
+
|
84
|
+
|
85
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-29 18:52:22 -0500
|
86
|
+
Processing by HomeController#helpers as PDF
|
87
|
+
Rendered home/helpers.pdf.pdfcraft (33.8ms)
|
88
|
+
Rendered text template (0.0ms)
|
89
|
+
Sent data contents.pdf (1.5ms)
|
90
|
+
Completed 200 OK in 38ms (Views: 37.3ms | ActiveRecord: 0.0ms)
|
@@ -0,0 +1,4165 @@
|
|
1
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2
|
+
------------------------
|
3
|
+
PdfcraftTest: test_truth
|
4
|
+
------------------------
|
5
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
7
|
+
------------------------
|
8
|
+
PdfcraftTest: test_truth
|
9
|
+
------------------------
|
10
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
12
|
+
------------------------
|
13
|
+
PdfcraftTest: test_truth
|
14
|
+
------------------------
|
15
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
16
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
17
|
+
--------------------------------------------------------
|
18
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
19
|
+
--------------------------------------------------------
|
20
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
21
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22
|
+
------------------------
|
23
|
+
PdfcraftTest: test_truth
|
24
|
+
------------------------
|
25
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
27
|
+
--------------------------------------------------------
|
28
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
29
|
+
--------------------------------------------------------
|
30
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 13:26:32 -0500
|
31
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
32
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
33
|
+
------------------------
|
34
|
+
PdfcraftTest: test_truth
|
35
|
+
------------------------
|
36
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
37
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
38
|
+
--------------------------------------------------------
|
39
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
40
|
+
--------------------------------------------------------
|
41
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 13:27:31 -0500
|
42
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
43
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
44
|
+
------------------------
|
45
|
+
PdfcraftTest: test_truth
|
46
|
+
------------------------
|
47
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
48
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
49
|
+
--------------------------------------------------------
|
50
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
51
|
+
--------------------------------------------------------
|
52
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 13:28:01 -0500
|
53
|
+
Processing by HomeController#index as PDF
|
54
|
+
Completed 500 Internal Server Error in 7ms
|
55
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
56
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
57
|
+
------------------------
|
58
|
+
PdfcraftTest: test_truth
|
59
|
+
------------------------
|
60
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
61
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
62
|
+
--------------------------------------------------------
|
63
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
64
|
+
--------------------------------------------------------
|
65
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 13:30:42 -0500
|
66
|
+
Processing by HomeController#index as PDF
|
67
|
+
Completed 500 Internal Server Error in 1ms
|
68
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
69
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
70
|
+
------------------------
|
71
|
+
PdfcraftTest: test_truth
|
72
|
+
------------------------
|
73
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
74
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
75
|
+
--------------------------------------------------------
|
76
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
77
|
+
--------------------------------------------------------
|
78
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 13:30:54 -0500
|
79
|
+
Processing by HomeController#index as PDF
|
80
|
+
Completed 500 Internal Server Error in 4ms
|
81
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
82
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
83
|
+
------------------------
|
84
|
+
PdfcraftTest: test_truth
|
85
|
+
------------------------
|
86
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
87
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
88
|
+
--------------------------------------------------------
|
89
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
90
|
+
--------------------------------------------------------
|
91
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 13:30:59 -0500
|
92
|
+
Processing by HomeController#index as PDF
|
93
|
+
Completed 500 Internal Server Error in 4ms
|
94
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
95
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
96
|
+
------------------------
|
97
|
+
PdfcraftTest: test_truth
|
98
|
+
------------------------
|
99
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
100
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
101
|
+
--------------------------------------------------------
|
102
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
103
|
+
--------------------------------------------------------
|
104
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 13:33:01 -0500
|
105
|
+
Processing by HomeController#index as PDF
|
106
|
+
Rendered home/index.pdf.erb (2.8ms)
|
107
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
108
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
109
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
110
|
+
------------------------
|
111
|
+
PdfcraftTest: test_truth
|
112
|
+
------------------------
|
113
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
114
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
115
|
+
--------------------------------------------------------
|
116
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
117
|
+
--------------------------------------------------------
|
118
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 13:35:27 -0500
|
119
|
+
Processing by HomeController#index as PDF
|
120
|
+
Rendered home/index.pdf.erb (0.7ms)
|
121
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
122
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
123
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
124
|
+
------------------------
|
125
|
+
PdfcraftTest: test_truth
|
126
|
+
------------------------
|
127
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
128
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
129
|
+
--------------------------------------------------------
|
130
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
131
|
+
--------------------------------------------------------
|
132
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 13:45:15 -0500
|
133
|
+
Processing by HomeController#index as PDF
|
134
|
+
Rendered home/index.pdf.erb (0.8ms)
|
135
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
136
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
137
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
138
|
+
------------------------
|
139
|
+
PdfcraftTest: test_truth
|
140
|
+
------------------------
|
141
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
142
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
143
|
+
--------------------------------------------------------
|
144
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
145
|
+
--------------------------------------------------------
|
146
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 13:46:12 -0500
|
147
|
+
Processing by HomeController#index as PDF
|
148
|
+
Rendered home/index.pdf.erb (0.8ms)
|
149
|
+
Rendered text template (0.0ms)
|
150
|
+
Sent data contents.pdf (1.6ms)
|
151
|
+
Completed 200 OK in 56ms (Views: 55.9ms | ActiveRecord: 0.0ms)
|
152
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
153
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
154
|
+
------------------------
|
155
|
+
PdfcraftTest: test_truth
|
156
|
+
------------------------
|
157
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
158
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
159
|
+
--------------------------------------------------------
|
160
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
161
|
+
--------------------------------------------------------
|
162
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 13:51:27 -0500
|
163
|
+
Processing by HomeController#index as PDF
|
164
|
+
Rendered home/index.pdf.erb (0.8ms)
|
165
|
+
Rendered text template (0.0ms)
|
166
|
+
Sent data contents.pdf (1.0ms)
|
167
|
+
Completed 200 OK in 58ms (Views: 57.6ms | ActiveRecord: 0.0ms)
|
168
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
169
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
170
|
+
------------------------
|
171
|
+
PdfcraftTest: test_truth
|
172
|
+
------------------------
|
173
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
174
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
175
|
+
--------------------------------------------------------
|
176
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
177
|
+
--------------------------------------------------------
|
178
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 13:52:41 -0500
|
179
|
+
Processing by HomeController#index as PDF
|
180
|
+
Rendered home/index.pdf.erb (0.8ms)
|
181
|
+
Rendered text template (0.0ms)
|
182
|
+
Sent data contents.pdf (1.0ms)
|
183
|
+
Completed 200 OK in 50ms (Views: 50.1ms | ActiveRecord: 0.0ms)
|
184
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
185
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
186
|
+
------------------------
|
187
|
+
PdfcraftTest: test_truth
|
188
|
+
------------------------
|
189
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
190
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
191
|
+
---------------------------------------------------------------
|
192
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
193
|
+
---------------------------------------------------------------
|
194
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 14:18:54 -0500
|
195
|
+
Processing by HomeController#another as PDF
|
196
|
+
Rendered home/index.pdf.erb (0.8ms)
|
197
|
+
Rendered text template (0.0ms)
|
198
|
+
Sent data contents.pdf (0.9ms)
|
199
|
+
Completed 200 OK in 52ms (Views: 51.4ms | ActiveRecord: 0.0ms)
|
200
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
201
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
202
|
+
--------------------------------------------------------
|
203
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
204
|
+
--------------------------------------------------------
|
205
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 14:18:54 -0500
|
206
|
+
Processing by HomeController#index as PDF
|
207
|
+
Sent data contents.pdf (0.2ms)
|
208
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
209
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
210
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
211
|
+
------------------------
|
212
|
+
PdfcraftTest: test_truth
|
213
|
+
------------------------
|
214
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
215
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
216
|
+
---------------------------------------------------------------
|
217
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
218
|
+
---------------------------------------------------------------
|
219
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 15:13:52 -0500
|
220
|
+
Processing by HomeController#another as PDF
|
221
|
+
Completed 500 Internal Server Error in 4ms
|
222
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
223
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
224
|
+
--------------------------------------------------------
|
225
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
226
|
+
--------------------------------------------------------
|
227
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 15:13:52 -0500
|
228
|
+
Processing by HomeController#index as PDF
|
229
|
+
Completed 500 Internal Server Error in 1ms
|
230
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
231
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
232
|
+
------------------------
|
233
|
+
PdfcraftTest: test_truth
|
234
|
+
------------------------
|
235
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
236
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
237
|
+
---------------------------------------------------------------
|
238
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
239
|
+
---------------------------------------------------------------
|
240
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 15:19:05 -0500
|
241
|
+
Processing by HomeController#another as PDF
|
242
|
+
Completed 500 Internal Server Error in 4ms
|
243
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
244
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
245
|
+
--------------------------------------------------------
|
246
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
247
|
+
--------------------------------------------------------
|
248
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 15:19:05 -0500
|
249
|
+
Processing by HomeController#index as PDF
|
250
|
+
Completed 500 Internal Server Error in 1ms
|
251
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
252
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
253
|
+
------------------------
|
254
|
+
PdfcraftTest: test_truth
|
255
|
+
------------------------
|
256
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
257
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
258
|
+
---------------------------------------------------------------
|
259
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
260
|
+
---------------------------------------------------------------
|
261
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 15:21:11 -0500
|
262
|
+
Processing by HomeController#another as PDF
|
263
|
+
Rendered home/index.pdf.pdfcraft (1.6ms)
|
264
|
+
Completed 500 Internal Server Error in 6ms
|
265
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
266
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
267
|
+
--------------------------------------------------------
|
268
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
269
|
+
--------------------------------------------------------
|
270
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 15:21:11 -0500
|
271
|
+
Processing by HomeController#index as PDF
|
272
|
+
Completed 500 Internal Server Error in 1ms
|
273
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
274
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
275
|
+
------------------------
|
276
|
+
PdfcraftTest: test_truth
|
277
|
+
------------------------
|
278
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
279
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
280
|
+
---------------------------------------------------------------
|
281
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
282
|
+
---------------------------------------------------------------
|
283
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 15:22:39 -0500
|
284
|
+
Processing by HomeController#another as PDF
|
285
|
+
Rendered home/index.pdf.pdfcraft (0.2ms)
|
286
|
+
Rendered text template (0.0ms)
|
287
|
+
Sent data contents.pdf (1.0ms)
|
288
|
+
Completed 200 OK in 49ms (Views: 49.0ms | ActiveRecord: 0.0ms)
|
289
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
290
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
291
|
+
--------------------------------------------------------
|
292
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
293
|
+
--------------------------------------------------------
|
294
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 15:22:39 -0500
|
295
|
+
Processing by HomeController#index as PDF
|
296
|
+
Sent data contents.pdf (0.2ms)
|
297
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
298
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
299
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
300
|
+
------------------------
|
301
|
+
PdfcraftTest: test_truth
|
302
|
+
------------------------
|
303
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
304
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
305
|
+
---------------------------------------------------------------
|
306
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
307
|
+
---------------------------------------------------------------
|
308
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 15:23:03 -0500
|
309
|
+
Processing by HomeController#another as PDF
|
310
|
+
Rendered home/index.pdf.pdfcraft (29.1ms)
|
311
|
+
Completed 500 Internal Server Error in 33ms
|
312
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
313
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
314
|
+
--------------------------------------------------------
|
315
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
316
|
+
--------------------------------------------------------
|
317
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 15:23:03 -0500
|
318
|
+
Processing by HomeController#index as PDF
|
319
|
+
Completed 500 Internal Server Error in 7ms
|
320
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
321
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
322
|
+
------------------------
|
323
|
+
PdfcraftTest: test_truth
|
324
|
+
------------------------
|
325
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
326
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
327
|
+
---------------------------------------------------------------
|
328
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
329
|
+
---------------------------------------------------------------
|
330
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 16:05:17 -0500
|
331
|
+
Processing by HomeController#another as PDF
|
332
|
+
Rendered home/index.pdf.pdfcraft (28.8ms)
|
333
|
+
Completed 500 Internal Server Error in 33ms
|
334
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
335
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
336
|
+
--------------------------------------------------------
|
337
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
338
|
+
--------------------------------------------------------
|
339
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 16:05:17 -0500
|
340
|
+
Processing by HomeController#index as PDF
|
341
|
+
Completed 500 Internal Server Error in 7ms
|
342
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
343
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
344
|
+
------------------------
|
345
|
+
PdfcraftTest: test_truth
|
346
|
+
------------------------
|
347
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
348
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
349
|
+
---------------------------------------------------------------
|
350
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
351
|
+
---------------------------------------------------------------
|
352
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 16:06:26 -0500
|
353
|
+
Processing by HomeController#another as PDF
|
354
|
+
Rendered home/index.pdf.pdfcraft (27.5ms)
|
355
|
+
Completed 500 Internal Server Error in 32ms
|
356
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
357
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
358
|
+
--------------------------------------------------------
|
359
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
360
|
+
--------------------------------------------------------
|
361
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 16:06:26 -0500
|
362
|
+
Processing by HomeController#index as PDF
|
363
|
+
Completed 500 Internal Server Error in 8ms
|
364
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
365
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
366
|
+
------------------------
|
367
|
+
PdfcraftTest: test_truth
|
368
|
+
------------------------
|
369
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
370
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
371
|
+
---------------------------------------------------------------
|
372
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
373
|
+
---------------------------------------------------------------
|
374
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 16:58:05 -0500
|
375
|
+
Processing by HomeController#another as PDF
|
376
|
+
Rendered home/index.pdf.pdfcraft (30.0ms)
|
377
|
+
Completed 500 Internal Server Error in 38ms
|
378
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
379
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
380
|
+
--------------------------------------------------------
|
381
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
382
|
+
--------------------------------------------------------
|
383
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 16:58:05 -0500
|
384
|
+
Processing by HomeController#index as PDF
|
385
|
+
Completed 500 Internal Server Error in 7ms
|
386
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
387
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
388
|
+
------------------------
|
389
|
+
PdfcraftTest: test_truth
|
390
|
+
------------------------
|
391
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
392
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
393
|
+
---------------------------------------------------------------
|
394
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
395
|
+
---------------------------------------------------------------
|
396
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:08:44 -0500
|
397
|
+
Processing by HomeController#another as PDF
|
398
|
+
Rendered home/index.pdf.pdfcraft (29.1ms)
|
399
|
+
Completed 500 Internal Server Error in 33ms
|
400
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
401
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
402
|
+
--------------------------------------------------------
|
403
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
404
|
+
--------------------------------------------------------
|
405
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:08:44 -0500
|
406
|
+
Processing by HomeController#index as PDF
|
407
|
+
Completed 500 Internal Server Error in 7ms
|
408
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
409
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
410
|
+
------------------------
|
411
|
+
PdfcraftTest: test_truth
|
412
|
+
------------------------
|
413
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
414
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
415
|
+
---------------------------------------------------------------
|
416
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
417
|
+
---------------------------------------------------------------
|
418
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:09:30 -0500
|
419
|
+
Processing by HomeController#another as PDF
|
420
|
+
Rendered home/index.pdf.pdfcraft (32.1ms)
|
421
|
+
Completed 500 Internal Server Error in 36ms
|
422
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
423
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
424
|
+
--------------------------------------------------------
|
425
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
426
|
+
--------------------------------------------------------
|
427
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:09:30 -0500
|
428
|
+
Processing by HomeController#index as PDF
|
429
|
+
Completed 500 Internal Server Error in 7ms
|
430
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
431
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
432
|
+
------------------------
|
433
|
+
PdfcraftTest: test_truth
|
434
|
+
------------------------
|
435
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
436
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
437
|
+
---------------------------------------------------------------
|
438
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
439
|
+
---------------------------------------------------------------
|
440
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:10:26 -0500
|
441
|
+
Processing by HomeController#another as PDF
|
442
|
+
Rendered home/index.pdf.pdfcraft (54.9ms)
|
443
|
+
Completed 500 Internal Server Error in 60ms
|
444
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
445
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
446
|
+
--------------------------------------------------------
|
447
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
448
|
+
--------------------------------------------------------
|
449
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:10:26 -0500
|
450
|
+
Processing by HomeController#index as PDF
|
451
|
+
Completed 500 Internal Server Error in 3ms
|
452
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
453
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
454
|
+
------------------------
|
455
|
+
PdfcraftTest: test_truth
|
456
|
+
------------------------
|
457
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
458
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
459
|
+
---------------------------------------------------------------
|
460
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
461
|
+
---------------------------------------------------------------
|
462
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:13:29 -0500
|
463
|
+
Processing by HomeController#another as PDF
|
464
|
+
Rendered home/index.pdf.pdfcraft (44.2ms)
|
465
|
+
Rendered text template (0.1ms)
|
466
|
+
Sent data contents.pdf (4.8ms)
|
467
|
+
Completed 200 OK in 54ms (Views: 53.6ms | ActiveRecord: 0.0ms)
|
468
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
469
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
470
|
+
--------------------------------------------------------
|
471
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
472
|
+
--------------------------------------------------------
|
473
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:13:30 -0500
|
474
|
+
Processing by HomeController#index as PDF
|
475
|
+
Sent data contents.pdf (0.2ms)
|
476
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
477
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
478
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
479
|
+
------------------------
|
480
|
+
PdfcraftTest: test_truth
|
481
|
+
------------------------
|
482
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
483
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
484
|
+
---------------------------------------------------------------
|
485
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
486
|
+
---------------------------------------------------------------
|
487
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:15:23 -0500
|
488
|
+
Processing by HomeController#another as PDF
|
489
|
+
Rendered home/index.pdf.pdfcraft (43.7ms)
|
490
|
+
Rendered text template (0.0ms)
|
491
|
+
Sent data contents.pdf (0.9ms)
|
492
|
+
Completed 200 OK in 49ms (Views: 48.6ms | ActiveRecord: 0.0ms)
|
493
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
494
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
495
|
+
--------------------------------------------------------
|
496
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
497
|
+
--------------------------------------------------------
|
498
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:15:23 -0500
|
499
|
+
Processing by HomeController#index as PDF
|
500
|
+
Sent data contents.pdf (0.2ms)
|
501
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
502
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
503
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
504
|
+
------------------------
|
505
|
+
PdfcraftTest: test_truth
|
506
|
+
------------------------
|
507
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
508
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
509
|
+
---------------------------------------------------------------
|
510
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
511
|
+
---------------------------------------------------------------
|
512
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:23:22 -0500
|
513
|
+
Processing by HomeController#another as PDF
|
514
|
+
Rendered home/index.pdf.pdfcraft (44.9ms)
|
515
|
+
Rendered text template (0.0ms)
|
516
|
+
Sent data contents.pdf (0.9ms)
|
517
|
+
Completed 200 OK in 50ms (Views: 49.8ms | ActiveRecord: 0.0ms)
|
518
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
519
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
520
|
+
--------------------------------------------------------
|
521
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
522
|
+
--------------------------------------------------------
|
523
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:23:22 -0500
|
524
|
+
Processing by HomeController#index as PDF
|
525
|
+
Sent data contents.pdf (0.2ms)
|
526
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
527
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
528
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
529
|
+
------------------------
|
530
|
+
PdfcraftTest: test_truth
|
531
|
+
------------------------
|
532
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
533
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
534
|
+
---------------------------------------------------------------
|
535
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
536
|
+
---------------------------------------------------------------
|
537
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:24:27 -0500
|
538
|
+
Processing by HomeController#another as PDF
|
539
|
+
Rendered home/index.pdf.pdfcraft (46.3ms)
|
540
|
+
Rendered text template (0.0ms)
|
541
|
+
Sent data contents.pdf (0.9ms)
|
542
|
+
Completed 200 OK in 51ms (Views: 51.1ms | ActiveRecord: 0.0ms)
|
543
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
544
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
545
|
+
--------------------------------------------------------
|
546
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
547
|
+
--------------------------------------------------------
|
548
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:24:27 -0500
|
549
|
+
Processing by HomeController#index as PDF
|
550
|
+
Sent data contents.pdf (0.2ms)
|
551
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
552
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
553
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
554
|
+
------------------------
|
555
|
+
PdfcraftTest: test_truth
|
556
|
+
------------------------
|
557
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
558
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
559
|
+
---------------------------------------------------------------
|
560
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
561
|
+
---------------------------------------------------------------
|
562
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:34:12 -0500
|
563
|
+
Processing by HomeController#another as PDF
|
564
|
+
Rendered home/index.pdf.pdfcraft (44.7ms)
|
565
|
+
Rendered text template (0.0ms)
|
566
|
+
Sent data contents.pdf (0.9ms)
|
567
|
+
Completed 200 OK in 50ms (Views: 49.6ms | ActiveRecord: 0.0ms)
|
568
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
569
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
570
|
+
--------------------------------------------------------
|
571
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
572
|
+
--------------------------------------------------------
|
573
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:34:12 -0500
|
574
|
+
Processing by HomeController#index as PDF
|
575
|
+
Sent data contents.pdf (0.2ms)
|
576
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
577
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
578
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
579
|
+
------------------------
|
580
|
+
PdfcraftTest: test_truth
|
581
|
+
------------------------
|
582
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
583
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
584
|
+
---------------------------------------------------------------
|
585
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
586
|
+
---------------------------------------------------------------
|
587
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:36:44 -0500
|
588
|
+
Processing by HomeController#another as PDF
|
589
|
+
Rendered home/index.pdf.pdfcraft (45.2ms)
|
590
|
+
Rendered text template (0.0ms)
|
591
|
+
Sent data contents.pdf (0.9ms)
|
592
|
+
Completed 200 OK in 50ms (Views: 50.2ms | ActiveRecord: 0.0ms)
|
593
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
594
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
595
|
+
--------------------------------------------------------
|
596
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
597
|
+
--------------------------------------------------------
|
598
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:36:44 -0500
|
599
|
+
Processing by HomeController#index as PDF
|
600
|
+
Sent data contents.pdf (0.2ms)
|
601
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
602
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
603
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
604
|
+
------------------------
|
605
|
+
PdfcraftTest: test_truth
|
606
|
+
------------------------
|
607
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
608
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
609
|
+
---------------------------------------------------------------
|
610
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
611
|
+
---------------------------------------------------------------
|
612
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:41:07 -0500
|
613
|
+
Processing by HomeController#another as PDF
|
614
|
+
Rendered home/index.pdf.pdfcraft (43.8ms)
|
615
|
+
Rendered text template (0.0ms)
|
616
|
+
Sent data contents.pdf (0.9ms)
|
617
|
+
Completed 200 OK in 49ms (Views: 48.7ms | ActiveRecord: 0.0ms)
|
618
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
619
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
620
|
+
-----------------------------------------------------
|
621
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
622
|
+
-----------------------------------------------------
|
623
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 17:41:07 -0500
|
624
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
625
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
626
|
+
--------------------------------------------------------
|
627
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
628
|
+
--------------------------------------------------------
|
629
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:41:07 -0500
|
630
|
+
Processing by HomeController#index as PDF
|
631
|
+
Sent data contents.pdf (0.2ms)
|
632
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
633
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
634
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
635
|
+
------------------------
|
636
|
+
PdfcraftTest: test_truth
|
637
|
+
------------------------
|
638
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
639
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
640
|
+
---------------------------------------------------------------
|
641
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
642
|
+
---------------------------------------------------------------
|
643
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:41:41 -0500
|
644
|
+
Processing by HomeController#another as PDF
|
645
|
+
Rendered home/index.pdf.pdfcraft (44.6ms)
|
646
|
+
Rendered text template (0.0ms)
|
647
|
+
Sent data contents.pdf (0.9ms)
|
648
|
+
Completed 200 OK in 50ms (Views: 49.5ms | ActiveRecord: 0.0ms)
|
649
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
650
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
651
|
+
-----------------------------------------------------
|
652
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
653
|
+
-----------------------------------------------------
|
654
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 17:41:41 -0500
|
655
|
+
Processing by HomeController#partials as PDF
|
656
|
+
Completed 500 Internal Server Error in 2ms
|
657
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
658
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
659
|
+
--------------------------------------------------------
|
660
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
661
|
+
--------------------------------------------------------
|
662
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:41:41 -0500
|
663
|
+
Processing by HomeController#index as PDF
|
664
|
+
Sent data contents.pdf (0.2ms)
|
665
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
666
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
667
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
668
|
+
------------------------
|
669
|
+
PdfcraftTest: test_truth
|
670
|
+
------------------------
|
671
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
672
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
673
|
+
---------------------------------------------------------------
|
674
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
675
|
+
---------------------------------------------------------------
|
676
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:43:43 -0500
|
677
|
+
Processing by HomeController#another as PDF
|
678
|
+
Rendered home/index.pdf.pdfcraft (44.1ms)
|
679
|
+
Rendered text template (0.0ms)
|
680
|
+
Sent data contents.pdf (0.9ms)
|
681
|
+
Completed 200 OK in 49ms (Views: 48.9ms | ActiveRecord: 0.0ms)
|
682
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
683
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
684
|
+
-----------------------------------------------------
|
685
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
686
|
+
-----------------------------------------------------
|
687
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 17:43:43 -0500
|
688
|
+
Processing by HomeController#partials as PDF
|
689
|
+
Completed 500 Internal Server Error in 9ms
|
690
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
691
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
692
|
+
--------------------------------------------------------
|
693
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
694
|
+
--------------------------------------------------------
|
695
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:43:43 -0500
|
696
|
+
Processing by HomeController#index as PDF
|
697
|
+
Sent data contents.pdf (0.3ms)
|
698
|
+
Completed 200 OK in 23ms (Views: 23.0ms | ActiveRecord: 0.0ms)
|
699
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
700
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
701
|
+
------------------------
|
702
|
+
PdfcraftTest: test_truth
|
703
|
+
------------------------
|
704
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
705
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
706
|
+
---------------------------------------------------------------
|
707
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
708
|
+
---------------------------------------------------------------
|
709
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:45:31 -0500
|
710
|
+
Processing by HomeController#another as PDF
|
711
|
+
Rendered home/index.pdf.pdfcraft (51.2ms)
|
712
|
+
Rendered text template (0.0ms)
|
713
|
+
Sent data contents.pdf (0.9ms)
|
714
|
+
Completed 200 OK in 56ms (Views: 56.1ms | ActiveRecord: 0.0ms)
|
715
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
716
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
717
|
+
-----------------------------------------------------
|
718
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
719
|
+
-----------------------------------------------------
|
720
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 17:45:31 -0500
|
721
|
+
Processing by HomeController#partials as PDF
|
722
|
+
Rendered home/_the_partial.pdf.pdfcraft (2.0ms)
|
723
|
+
Sent data contents.pdf (0.3ms)
|
724
|
+
Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
|
725
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
726
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
727
|
+
--------------------------------------------------------
|
728
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
729
|
+
--------------------------------------------------------
|
730
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:45:31 -0500
|
731
|
+
Processing by HomeController#index as PDF
|
732
|
+
Sent data contents.pdf (0.2ms)
|
733
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
734
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
735
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
736
|
+
------------------------
|
737
|
+
PdfcraftTest: test_truth
|
738
|
+
------------------------
|
739
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
740
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
741
|
+
---------------------------------------------------------------
|
742
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
743
|
+
---------------------------------------------------------------
|
744
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:47:28 -0500
|
745
|
+
Processing by HomeController#another as PDF
|
746
|
+
Rendered home/index.pdf.pdfcraft (44.9ms)
|
747
|
+
Rendered text template (0.0ms)
|
748
|
+
Sent data contents.pdf (0.9ms)
|
749
|
+
Completed 200 OK in 50ms (Views: 49.8ms | ActiveRecord: 0.0ms)
|
750
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
751
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
752
|
+
-----------------------------------------------------
|
753
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
754
|
+
-----------------------------------------------------
|
755
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 17:47:28 -0500
|
756
|
+
Processing by HomeController#partials as PDF
|
757
|
+
Rendered home/_the_partial.pdf.pdfcraft (2.0ms)
|
758
|
+
Sent data contents.pdf (0.3ms)
|
759
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
760
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
761
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
762
|
+
--------------------------------------------------------
|
763
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
764
|
+
--------------------------------------------------------
|
765
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:47:28 -0500
|
766
|
+
Processing by HomeController#index as PDF
|
767
|
+
Sent data contents.pdf (0.2ms)
|
768
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
769
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
770
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
771
|
+
------------------------
|
772
|
+
PdfcraftTest: test_truth
|
773
|
+
------------------------
|
774
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
775
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
776
|
+
---------------------------------------------------------------
|
777
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
778
|
+
---------------------------------------------------------------
|
779
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:50:46 -0500
|
780
|
+
Processing by HomeController#another as PDF
|
781
|
+
Rendered home/index.pdf.pdfcraft (28.3ms)
|
782
|
+
Completed 500 Internal Server Error in 33ms
|
783
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
784
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
785
|
+
-----------------------------------------------------
|
786
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
787
|
+
-----------------------------------------------------
|
788
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 17:50:47 -0500
|
789
|
+
Processing by HomeController#partials as PDF
|
790
|
+
Completed 500 Internal Server Error in 13ms
|
791
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
792
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
793
|
+
--------------------------------------------------------
|
794
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
795
|
+
--------------------------------------------------------
|
796
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:50:47 -0500
|
797
|
+
Processing by HomeController#index as PDF
|
798
|
+
Completed 500 Internal Server Error in 7ms
|
799
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
800
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
801
|
+
------------------------
|
802
|
+
PdfcraftTest: test_truth
|
803
|
+
------------------------
|
804
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
805
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
806
|
+
---------------------------------------------------------------
|
807
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
808
|
+
---------------------------------------------------------------
|
809
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:51:11 -0500
|
810
|
+
Processing by HomeController#another as PDF
|
811
|
+
Rendered home/index.pdf.pdfcraft (72.3ms)
|
812
|
+
Rendered text template (0.0ms)
|
813
|
+
Sent data contents.pdf (0.9ms)
|
814
|
+
Completed 200 OK in 77ms (Views: 77.2ms | ActiveRecord: 0.0ms)
|
815
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
816
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
817
|
+
-----------------------------------------------------
|
818
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
819
|
+
-----------------------------------------------------
|
820
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 17:51:11 -0500
|
821
|
+
Processing by HomeController#partials as PDF
|
822
|
+
Rendered home/_the_partial.pdf.pdfcraft (32.8ms)
|
823
|
+
Sent data contents.pdf (0.5ms)
|
824
|
+
Completed 200 OK in 70ms (Views: 69.6ms | ActiveRecord: 0.0ms)
|
825
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
826
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
827
|
+
--------------------------------------------------------
|
828
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
829
|
+
--------------------------------------------------------
|
830
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:51:11 -0500
|
831
|
+
Processing by HomeController#index as PDF
|
832
|
+
Sent data contents.pdf (0.3ms)
|
833
|
+
Completed 200 OK in 30ms (Views: 29.8ms | ActiveRecord: 0.0ms)
|
834
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
835
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
836
|
+
------------------------
|
837
|
+
PdfcraftTest: test_truth
|
838
|
+
------------------------
|
839
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
840
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
841
|
+
---------------------------------------------------------------
|
842
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
843
|
+
---------------------------------------------------------------
|
844
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:59:08 -0500
|
845
|
+
Processing by HomeController#another as PDF
|
846
|
+
Rendered home/index.pdf.pdfcraft (45.1ms)
|
847
|
+
Rendered text template (0.0ms)
|
848
|
+
Sent data contents.pdf (0.9ms)
|
849
|
+
Completed 200 OK in 50ms (Views: 50.0ms | ActiveRecord: 0.0ms)
|
850
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
851
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
852
|
+
-----------------------------------------------------
|
853
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
854
|
+
-----------------------------------------------------
|
855
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 17:59:08 -0500
|
856
|
+
Processing by HomeController#partials as PDF
|
857
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.9ms)
|
858
|
+
Sent data contents.pdf (0.3ms)
|
859
|
+
Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
860
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
861
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
862
|
+
--------------------------------------------------------
|
863
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
864
|
+
--------------------------------------------------------
|
865
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:59:08 -0500
|
866
|
+
Processing by HomeController#index as PDF
|
867
|
+
Sent data contents.pdf (0.3ms)
|
868
|
+
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
869
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
870
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
871
|
+
------------------------
|
872
|
+
PdfcraftTest: test_truth
|
873
|
+
------------------------
|
874
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
875
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
876
|
+
---------------------------------------------------------------
|
877
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
878
|
+
---------------------------------------------------------------
|
879
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:59:24 -0500
|
880
|
+
Processing by HomeController#another as PDF
|
881
|
+
Rendered home/index.pdf.pdfcraft (28.0ms)
|
882
|
+
Completed 500 Internal Server Error in 32ms
|
883
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
884
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
885
|
+
-----------------------------------------------------
|
886
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
887
|
+
-----------------------------------------------------
|
888
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 17:59:24 -0500
|
889
|
+
Processing by HomeController#partials as PDF
|
890
|
+
Completed 500 Internal Server Error in 7ms
|
891
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
892
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
893
|
+
--------------------------------------------------------
|
894
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
895
|
+
--------------------------------------------------------
|
896
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:59:24 -0500
|
897
|
+
Processing by HomeController#index as PDF
|
898
|
+
Completed 500 Internal Server Error in 7ms
|
899
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
900
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
901
|
+
------------------------
|
902
|
+
PdfcraftTest: test_truth
|
903
|
+
------------------------
|
904
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
905
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
906
|
+
---------------------------------------------------------------
|
907
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
908
|
+
---------------------------------------------------------------
|
909
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 17:59:55 -0500
|
910
|
+
Processing by HomeController#another as PDF
|
911
|
+
Rendered home/index.pdf.pdfcraft (27.4ms)
|
912
|
+
Completed 500 Internal Server Error in 32ms
|
913
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
914
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
915
|
+
-----------------------------------------------------
|
916
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
917
|
+
-----------------------------------------------------
|
918
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 17:59:55 -0500
|
919
|
+
Processing by HomeController#partials as PDF
|
920
|
+
Completed 500 Internal Server Error in 7ms
|
921
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
922
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
923
|
+
--------------------------------------------------------
|
924
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
925
|
+
--------------------------------------------------------
|
926
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 17:59:55 -0500
|
927
|
+
Processing by HomeController#index as PDF
|
928
|
+
Completed 500 Internal Server Error in 7ms
|
929
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
930
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
931
|
+
------------------------
|
932
|
+
PdfcraftTest: test_truth
|
933
|
+
------------------------
|
934
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
935
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
936
|
+
---------------------------------------------------------------
|
937
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
938
|
+
---------------------------------------------------------------
|
939
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 18:16:53 -0500
|
940
|
+
Processing by HomeController#another as PDF
|
941
|
+
Rendered home/index.pdf.pdfcraft (45.1ms)
|
942
|
+
Rendered text template (0.0ms)
|
943
|
+
Sent data contents.pdf (0.9ms)
|
944
|
+
Completed 200 OK in 50ms (Views: 50.0ms | ActiveRecord: 0.0ms)
|
945
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
946
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
947
|
+
-----------------------------------------------------
|
948
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
949
|
+
-----------------------------------------------------
|
950
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 18:16:54 -0500
|
951
|
+
Processing by HomeController#partials as PDF
|
952
|
+
Rendered home/_the_partial.pdf.pdfcraft (2.1ms)
|
953
|
+
Sent data contents.pdf (0.3ms)
|
954
|
+
Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms)
|
955
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
956
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
957
|
+
--------------------------------------------------------
|
958
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
959
|
+
--------------------------------------------------------
|
960
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 18:16:54 -0500
|
961
|
+
Processing by HomeController#index as PDF
|
962
|
+
Sent data contents.pdf (0.3ms)
|
963
|
+
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
964
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
965
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
966
|
+
------------------------
|
967
|
+
PdfcraftTest: test_truth
|
968
|
+
------------------------
|
969
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
970
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
971
|
+
---------------------------------------------------------------
|
972
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
973
|
+
---------------------------------------------------------------
|
974
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 18:18:53 -0500
|
975
|
+
Processing by HomeController#another as PDF
|
976
|
+
Rendered home/index.pdf.pdfcraft (28.3ms)
|
977
|
+
Completed 500 Internal Server Error in 32ms
|
978
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
979
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
980
|
+
-----------------------------------------------------
|
981
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
982
|
+
-----------------------------------------------------
|
983
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 18:18:53 -0500
|
984
|
+
Processing by HomeController#partials as PDF
|
985
|
+
Completed 500 Internal Server Error in 8ms
|
986
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
987
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
988
|
+
--------------------------------------------------------
|
989
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
990
|
+
--------------------------------------------------------
|
991
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 18:18:53 -0500
|
992
|
+
Processing by HomeController#index as PDF
|
993
|
+
Completed 500 Internal Server Error in 8ms
|
994
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
995
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
996
|
+
------------------------
|
997
|
+
PdfcraftTest: test_truth
|
998
|
+
------------------------
|
999
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1000
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1001
|
+
---------------------------------------------------------------
|
1002
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1003
|
+
---------------------------------------------------------------
|
1004
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 18:21:32 -0500
|
1005
|
+
Processing by HomeController#another as PDF
|
1006
|
+
Rendered home/index.pdf.pdfcraft (72.5ms)
|
1007
|
+
Completed 500 Internal Server Error in 77ms
|
1008
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1009
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1010
|
+
-----------------------------------------------------
|
1011
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
1012
|
+
-----------------------------------------------------
|
1013
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 18:21:32 -0500
|
1014
|
+
Processing by HomeController#partials as PDF
|
1015
|
+
Rendered home/_the_partial.pdf.pdfcraft (8.2ms)
|
1016
|
+
Completed 500 Internal Server Error in 12ms
|
1017
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1018
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1019
|
+
--------------------------------------------------------
|
1020
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
1021
|
+
--------------------------------------------------------
|
1022
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 18:21:32 -0500
|
1023
|
+
Processing by HomeController#index as PDF
|
1024
|
+
Completed 500 Internal Server Error in 10ms
|
1025
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1026
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1027
|
+
------------------------
|
1028
|
+
PdfcraftTest: test_truth
|
1029
|
+
------------------------
|
1030
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1031
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1032
|
+
---------------------------------------------------------------
|
1033
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1034
|
+
---------------------------------------------------------------
|
1035
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 18:21:53 -0500
|
1036
|
+
Processing by HomeController#another as PDF
|
1037
|
+
Rendered home/index.pdf.pdfcraft (75.5ms)
|
1038
|
+
Completed 500 Internal Server Error in 80ms
|
1039
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1040
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1041
|
+
-----------------------------------------------------
|
1042
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
1043
|
+
-----------------------------------------------------
|
1044
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 18:21:53 -0500
|
1045
|
+
Processing by HomeController#partials as PDF
|
1046
|
+
Rendered home/_the_partial.pdf.pdfcraft (9.1ms)
|
1047
|
+
Completed 500 Internal Server Error in 13ms
|
1048
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1049
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1050
|
+
--------------------------------------------------------
|
1051
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
1052
|
+
--------------------------------------------------------
|
1053
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 18:21:53 -0500
|
1054
|
+
Processing by HomeController#index as PDF
|
1055
|
+
Completed 500 Internal Server Error in 10ms
|
1056
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1057
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1058
|
+
------------------------
|
1059
|
+
PdfcraftTest: test_truth
|
1060
|
+
------------------------
|
1061
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1062
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1063
|
+
---------------------------------------------------------------
|
1064
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1065
|
+
---------------------------------------------------------------
|
1066
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 18:22:30 -0500
|
1067
|
+
Processing by HomeController#another as PDF
|
1068
|
+
Rendered home/index.pdf.pdfcraft (45.6ms)
|
1069
|
+
Rendered text template (0.0ms)
|
1070
|
+
Sent data contents.pdf (0.9ms)
|
1071
|
+
Completed 200 OK in 51ms (Views: 50.5ms | ActiveRecord: 0.0ms)
|
1072
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1073
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1074
|
+
-----------------------------------------------------
|
1075
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
1076
|
+
-----------------------------------------------------
|
1077
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 18:22:30 -0500
|
1078
|
+
Processing by HomeController#partials as PDF
|
1079
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.6ms)
|
1080
|
+
Sent data contents.pdf (0.3ms)
|
1081
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
1082
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1083
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1084
|
+
--------------------------------------------------------
|
1085
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
1086
|
+
--------------------------------------------------------
|
1087
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 18:22:30 -0500
|
1088
|
+
Processing by HomeController#index as PDF
|
1089
|
+
Sent data contents.pdf (0.2ms)
|
1090
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
1091
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1092
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1093
|
+
------------------------
|
1094
|
+
PdfcraftTest: test_truth
|
1095
|
+
------------------------
|
1096
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1097
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1098
|
+
---------------------------------------------------------------
|
1099
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1100
|
+
---------------------------------------------------------------
|
1101
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 18:29:46 -0500
|
1102
|
+
Processing by HomeController#another as PDF
|
1103
|
+
Rendered home/index.pdf.pdfcraft (78.0ms)
|
1104
|
+
Rendered text template (0.0ms)
|
1105
|
+
Sent data contents.pdf (23.3ms)
|
1106
|
+
Completed 200 OK in 106ms (Views: 105.3ms | ActiveRecord: 0.0ms)
|
1107
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1108
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1109
|
+
-----------------------------------------------------
|
1110
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
1111
|
+
-----------------------------------------------------
|
1112
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 18:29:46 -0500
|
1113
|
+
Processing by HomeController#partials as PDF
|
1114
|
+
Rendered home/_the_partial.pdf.pdfcraft (39.3ms)
|
1115
|
+
Sent data contents.pdf (0.4ms)
|
1116
|
+
Completed 200 OK in 73ms (Views: 73.1ms | ActiveRecord: 0.0ms)
|
1117
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1118
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1119
|
+
--------------------------------------------------------
|
1120
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
1121
|
+
--------------------------------------------------------
|
1122
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 18:29:46 -0500
|
1123
|
+
Processing by HomeController#index as PDF
|
1124
|
+
Sent data contents.pdf (0.4ms)
|
1125
|
+
Completed 200 OK in 35ms (Views: 34.9ms | ActiveRecord: 0.0ms)
|
1126
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1127
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1128
|
+
------------------------
|
1129
|
+
PdfcraftTest: test_truth
|
1130
|
+
------------------------
|
1131
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1132
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1133
|
+
---------------------------------------------------------------
|
1134
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1135
|
+
---------------------------------------------------------------
|
1136
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 18:30:56 -0500
|
1137
|
+
Processing by HomeController#another as PDF
|
1138
|
+
ERROR: compiling _app_views_home_index_pdf_pdfcraft__2769693274159837728_70312203910300 RAISED /Users/ryan/src/ruby/pdfcraft/test/dummy/app/views/home/index.pdf.pdfcraft:3: syntax error, unexpected tCONSTANT, expecting keyword_end
|
1139
|
+
@pdf.text "This template is rendered as a PDF."
|
1140
|
+
^
|
1141
|
+
/Users/ryan/src/ruby/pdfcraft/test/dummy/app/views/home/index.pdf.pdfcraft:3: syntax error, unexpected tSTRING_BEG, expecting '('
|
1142
|
+
/Users/ryan/src/ruby/pdfcraft/test/dummy/app/views/home/index.pdf.pdfcraft:3: unterminated string meets end of file
|
1143
|
+
Function body: def _app_views_home_index_pdf_pdfcraft__2769693274159837728_70312203910300(local_assigns, output_buffer)
|
1144
|
+
_old_virtual_path, @virtual_path = @virtual_path, "home/index";_old_output_buffer = @output_buffer;;@pdf ||= ::Prawn::Document.new;puts 3*"
|
1145
|
+
;p self
|
1146
|
+
@pdf.text "This template is rendered as a PDF."
|
1147
|
+
;@pdf.render;
|
1148
|
+
ensure
|
1149
|
+
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
1150
|
+
end
|
1151
|
+
|
1152
|
+
Backtrace: /Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:299:in `module_eval'
|
1153
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:299:in `compile'
|
1154
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:248:in `block in compile!'
|
1155
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:236:in `synchronize'
|
1156
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:236:in `compile!'
|
1157
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:142:in `block in render'
|
1158
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `block in instrument'
|
1159
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1160
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `instrument'
|
1161
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:141:in `render'
|
1162
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
|
1163
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
1164
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `block in instrument'
|
1165
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1166
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `instrument'
|
1167
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
1168
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
|
1169
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
|
1170
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/template_renderer.rb:47:in `render_template'
|
1171
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/template_renderer.rb:17:in `render'
|
1172
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/renderer.rb:42:in `render_template'
|
1173
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/renderer.rb:23:in `render'
|
1174
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/rendering.rb:127:in `_render_template'
|
1175
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
1176
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/rendering.rb:120:in `render_to_body'
|
1177
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
1178
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
1179
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/rendering.rb:113:in `render_to_string'
|
1180
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rendering.rb:23:in `render_to_string'
|
1181
|
+
/Users/ryan/src/ruby/pdfcraft/lib/pdfcraft/pdf_renderer.rb:4:in `block in <top (required)>'
|
1182
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/renderers.rb:33:in `block in _handle_render_options'
|
1183
|
+
/Users/ryan/.rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/set.rb:232:in `each_key'
|
1184
|
+
/Users/ryan/.rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/set.rb:232:in `each'
|
1185
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/renderers.rb:30:in `_handle_render_options'
|
1186
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
1187
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/rendering.rb:97:in `render'
|
1188
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rendering.rb:16:in `render'
|
1189
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
1190
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
1191
|
+
/Users/ryan/.rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
1192
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
1193
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
1194
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
1195
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activerecord-4.0.2/lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
1196
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:40:in `render'
|
1197
|
+
/Users/ryan/src/ruby/pdfcraft/test/dummy/app/controllers/home_controller.rb:11:in `another'
|
1198
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
1199
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/base.rb:189:in `process_action'
|
1200
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1201
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1202
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/callbacks.rb:383:in `_run__3002647121378657671__process_action__callbacks'
|
1203
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1204
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1205
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1206
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1207
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `block in instrument'
|
1208
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1209
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `instrument'
|
1210
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1211
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
1212
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activerecord-4.0.2/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1213
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/base.rb:136:in `process'
|
1214
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/rendering.rb:44:in `process'
|
1215
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal.rb:195:in `dispatch'
|
1216
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1217
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal.rb:231:in `block in action'
|
1218
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/routing/route_set.rb:80:in `call'
|
1219
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
1220
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/routing/route_set.rb:48:in `call'
|
1221
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1222
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/journey/router.rb:59:in `each'
|
1223
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/journey/router.rb:59:in `call'
|
1224
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/routing/route_set.rb:680:in `call'
|
1225
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/etag.rb:23:in `call'
|
1226
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/conditionalget.rb:25:in `call'
|
1227
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
|
1228
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1229
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/flash.rb:241:in `call'
|
1230
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:225:in `context'
|
1231
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:220:in `call'
|
1232
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
1233
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activerecord-4.0.2/lib/active_record/query_cache.rb:36:in `call'
|
1234
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activerecord-4.0.2/lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
1235
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1236
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/callbacks.rb:373:in `_run__2978704734480990729__call__callbacks'
|
1237
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1238
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1239
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1240
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1241
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1242
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/rack/logger.rb:38:in `call_app'
|
1243
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/rack/logger.rb:20:in `block in call'
|
1244
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
1245
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/tagged_logging.rb:25:in `tagged'
|
1246
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/tagged_logging.rb:67:in `tagged'
|
1247
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/rack/logger.rb:20:in `call'
|
1248
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1249
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
|
1250
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/runtime.rb:17:in `call'
|
1251
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
1252
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/static.rb:64:in `call'
|
1253
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/sendfile.rb:112:in `call'
|
1254
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/engine.rb:511:in `call'
|
1255
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/application.rb:97:in `call'
|
1256
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-test-0.6.2/lib/rack/mock_session.rb:30:in `request'
|
1257
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-test-0.6.2/lib/rack/test.rb:230:in `process_request'
|
1258
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-test-0.6.2/lib/rack/test.rb:123:in `request'
|
1259
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/testing/integration.rb:311:in `process'
|
1260
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/testing/integration.rb:32:in `get'
|
1261
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
|
1262
|
+
/Users/ryan/src/ruby/pdfcraft/test/integration/pdf_rendering_test.rb:15:in `block in <class:PdfRenderingTest>'
|
1263
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1258:in `run'
|
1264
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:933:in `block in _run_suite'
|
1265
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:926:in `map'
|
1266
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:926:in `_run_suite'
|
1267
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/parallel_each.rb:71:in `block in _run_suites'
|
1268
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/parallel_each.rb:71:in `map'
|
1269
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/parallel_each.rb:71:in `_run_suites'
|
1270
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:877:in `_run_anything'
|
1271
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1085:in `run_tests'
|
1272
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1072:in `block in _run'
|
1273
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1071:in `each'
|
1274
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1071:in `_run'
|
1275
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1059:in `run'
|
1276
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:795:in `block in autorun'
|
1277
|
+
Rendered home/index.pdf.pdfcraft (1.3ms)
|
1278
|
+
Completed 500 Internal Server Error in 5ms
|
1279
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1280
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1281
|
+
-----------------------------------------------------
|
1282
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
1283
|
+
-----------------------------------------------------
|
1284
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 18:30:56 -0500
|
1285
|
+
Processing by HomeController#partials as PDF
|
1286
|
+
ERROR: compiling _app_views_home_partials_pdf_pdfcraft__2288381886362702192_70312204288220 RAISED /Users/ryan/src/ruby/pdfcraft/test/dummy/app/views/home/partials.pdf.pdfcraft:3: syntax error, unexpected tCONSTANT, expecting keyword_end
|
1287
|
+
@pdf.text "This was rendered in the base template"
|
1288
|
+
^
|
1289
|
+
/Users/ryan/src/ruby/pdfcraft/test/dummy/app/views/home/partials.pdf.pdfcraft:3: syntax error, unexpected keyword_in, expecting keyword_end
|
1290
|
+
@pdf.text "This was rendered in the base template"
|
1291
|
+
^
|
1292
|
+
/Users/ryan/src/ruby/pdfcraft/test/dummy/app/views/home/partials.pdf.pdfcraft:3: unterminated string meets end of file
|
1293
|
+
/Users/ryan/src/ruby/pdfcraft/test/dummy/app/views/home/partials.pdf.pdfcraft:3: syntax error, unexpected end-of-input, expecting keyword_end
|
1294
|
+
Function body: def _app_views_home_partials_pdf_pdfcraft__2288381886362702192_70312204288220(local_assigns, output_buffer)
|
1295
|
+
_old_virtual_path, @virtual_path = @virtual_path, "home/partials";_old_output_buffer = @output_buffer;;@pdf ||= ::Prawn::Document.new;puts 3*"
|
1296
|
+
;p self
|
1297
|
+
@pdf.text "This was rendered in the base template"
|
1298
|
+
|
1299
|
+
render partial: 'the_partial'
|
1300
|
+
|
1301
|
+
;@pdf.render;
|
1302
|
+
ensure
|
1303
|
+
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
1304
|
+
end
|
1305
|
+
|
1306
|
+
Backtrace: /Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:299:in `module_eval'
|
1307
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:299:in `compile'
|
1308
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:248:in `block in compile!'
|
1309
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:236:in `synchronize'
|
1310
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:236:in `compile!'
|
1311
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:142:in `block in render'
|
1312
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `block in instrument'
|
1313
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1314
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `instrument'
|
1315
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:141:in `render'
|
1316
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
|
1317
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
1318
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `block in instrument'
|
1319
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1320
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `instrument'
|
1321
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
1322
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
|
1323
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
|
1324
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/template_renderer.rb:47:in `render_template'
|
1325
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/template_renderer.rb:17:in `render'
|
1326
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/renderer.rb:42:in `render_template'
|
1327
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/renderer.rb:23:in `render'
|
1328
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/rendering.rb:127:in `_render_template'
|
1329
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
1330
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/rendering.rb:120:in `render_to_body'
|
1331
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
1332
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
1333
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/rendering.rb:113:in `render_to_string'
|
1334
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rendering.rb:23:in `render_to_string'
|
1335
|
+
/Users/ryan/src/ruby/pdfcraft/lib/pdfcraft/pdf_renderer.rb:4:in `block in <top (required)>'
|
1336
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/renderers.rb:33:in `block in _handle_render_options'
|
1337
|
+
/Users/ryan/.rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/set.rb:232:in `each_key'
|
1338
|
+
/Users/ryan/.rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/set.rb:232:in `each'
|
1339
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/renderers.rb:30:in `_handle_render_options'
|
1340
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
1341
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/rendering.rb:97:in `render'
|
1342
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rendering.rb:16:in `render'
|
1343
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
1344
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
1345
|
+
/Users/ryan/.rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
1346
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
1347
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
1348
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
1349
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activerecord-4.0.2/lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
1350
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:40:in `render'
|
1351
|
+
/Users/ryan/src/ruby/pdfcraft/test/dummy/app/controllers/home_controller.rb:15:in `partials'
|
1352
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
1353
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/base.rb:189:in `process_action'
|
1354
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1355
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1356
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/callbacks.rb:383:in `_run__3002647121378657671__process_action__callbacks'
|
1357
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1358
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1359
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1360
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1361
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `block in instrument'
|
1362
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1363
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `instrument'
|
1364
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1365
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
1366
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activerecord-4.0.2/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1367
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/base.rb:136:in `process'
|
1368
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/rendering.rb:44:in `process'
|
1369
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal.rb:195:in `dispatch'
|
1370
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1371
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal.rb:231:in `block in action'
|
1372
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/routing/route_set.rb:80:in `call'
|
1373
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
1374
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/routing/route_set.rb:48:in `call'
|
1375
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1376
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/journey/router.rb:59:in `each'
|
1377
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/journey/router.rb:59:in `call'
|
1378
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/routing/route_set.rb:680:in `call'
|
1379
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/etag.rb:23:in `call'
|
1380
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/conditionalget.rb:25:in `call'
|
1381
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
|
1382
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1383
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/flash.rb:241:in `call'
|
1384
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:225:in `context'
|
1385
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:220:in `call'
|
1386
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
1387
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activerecord-4.0.2/lib/active_record/query_cache.rb:36:in `call'
|
1388
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activerecord-4.0.2/lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
1389
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1390
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/callbacks.rb:373:in `_run__2978704734480990729__call__callbacks'
|
1391
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1392
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1393
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1394
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1395
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1396
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/rack/logger.rb:38:in `call_app'
|
1397
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/rack/logger.rb:20:in `block in call'
|
1398
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
1399
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/tagged_logging.rb:25:in `tagged'
|
1400
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/tagged_logging.rb:67:in `tagged'
|
1401
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/rack/logger.rb:20:in `call'
|
1402
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1403
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
|
1404
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/runtime.rb:17:in `call'
|
1405
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
1406
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/static.rb:64:in `call'
|
1407
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/sendfile.rb:112:in `call'
|
1408
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/engine.rb:511:in `call'
|
1409
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/application.rb:97:in `call'
|
1410
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-test-0.6.2/lib/rack/mock_session.rb:30:in `request'
|
1411
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-test-0.6.2/lib/rack/test.rb:230:in `process_request'
|
1412
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-test-0.6.2/lib/rack/test.rb:123:in `request'
|
1413
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/testing/integration.rb:311:in `process'
|
1414
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/testing/integration.rb:32:in `get'
|
1415
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
|
1416
|
+
/Users/ryan/src/ruby/pdfcraft/test/integration/pdf_rendering_test.rb:24:in `block in <class:PdfRenderingTest>'
|
1417
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1258:in `run'
|
1418
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:933:in `block in _run_suite'
|
1419
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:926:in `map'
|
1420
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:926:in `_run_suite'
|
1421
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/parallel_each.rb:71:in `block in _run_suites'
|
1422
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/parallel_each.rb:71:in `map'
|
1423
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/parallel_each.rb:71:in `_run_suites'
|
1424
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:877:in `_run_anything'
|
1425
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1085:in `run_tests'
|
1426
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1072:in `block in _run'
|
1427
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1071:in `each'
|
1428
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1071:in `_run'
|
1429
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1059:in `run'
|
1430
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:795:in `block in autorun'
|
1431
|
+
Completed 500 Internal Server Error in 1ms
|
1432
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1433
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1434
|
+
--------------------------------------------------------
|
1435
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
1436
|
+
--------------------------------------------------------
|
1437
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 18:30:56 -0500
|
1438
|
+
Processing by HomeController#index as PDF
|
1439
|
+
ERROR: compiling _app_views_home_index_pdf_pdfcraft__2769693274159837728_70312203910300 RAISED /Users/ryan/src/ruby/pdfcraft/test/dummy/app/views/home/index.pdf.pdfcraft:3: syntax error, unexpected tCONSTANT, expecting keyword_end
|
1440
|
+
@pdf.text "This template is rendered as a PDF."
|
1441
|
+
^
|
1442
|
+
/Users/ryan/src/ruby/pdfcraft/test/dummy/app/views/home/index.pdf.pdfcraft:3: syntax error, unexpected tSTRING_BEG, expecting '('
|
1443
|
+
/Users/ryan/src/ruby/pdfcraft/test/dummy/app/views/home/index.pdf.pdfcraft:3: unterminated string meets end of file
|
1444
|
+
Function body: def _app_views_home_index_pdf_pdfcraft__2769693274159837728_70312203910300(local_assigns, output_buffer)
|
1445
|
+
_old_virtual_path, @virtual_path = @virtual_path, "home/index";_old_output_buffer = @output_buffer;;@pdf ||= ::Prawn::Document.new;puts 3*"
|
1446
|
+
;p self
|
1447
|
+
@pdf.text "This template is rendered as a PDF."
|
1448
|
+
;@pdf.render;
|
1449
|
+
ensure
|
1450
|
+
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
1451
|
+
end
|
1452
|
+
|
1453
|
+
Backtrace: /Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:299:in `module_eval'
|
1454
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:299:in `compile'
|
1455
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:248:in `block in compile!'
|
1456
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:236:in `synchronize'
|
1457
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:236:in `compile!'
|
1458
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:142:in `block in render'
|
1459
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `block in instrument'
|
1460
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1461
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `instrument'
|
1462
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/template.rb:141:in `render'
|
1463
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
|
1464
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
1465
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `block in instrument'
|
1466
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1467
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `instrument'
|
1468
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
1469
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
|
1470
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
|
1471
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/template_renderer.rb:47:in `render_template'
|
1472
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/template_renderer.rb:17:in `render'
|
1473
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/renderer.rb:42:in `render_template'
|
1474
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_view/renderer/renderer.rb:23:in `render'
|
1475
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/rendering.rb:127:in `_render_template'
|
1476
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
1477
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/rendering.rb:120:in `render_to_body'
|
1478
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
1479
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
1480
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/rendering.rb:113:in `render_to_string'
|
1481
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rendering.rb:23:in `render_to_string'
|
1482
|
+
/Users/ryan/src/ruby/pdfcraft/lib/pdfcraft/pdf_renderer.rb:4:in `block in <top (required)>'
|
1483
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/renderers.rb:33:in `block in _handle_render_options'
|
1484
|
+
/Users/ryan/.rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/set.rb:232:in `each_key'
|
1485
|
+
/Users/ryan/.rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/set.rb:232:in `each'
|
1486
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/renderers.rb:30:in `_handle_render_options'
|
1487
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
1488
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/rendering.rb:97:in `render'
|
1489
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rendering.rb:16:in `render'
|
1490
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
1491
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
1492
|
+
/Users/ryan/.rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
1493
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
1494
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
1495
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
1496
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activerecord-4.0.2/lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
1497
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:40:in `render'
|
1498
|
+
/Users/ryan/src/ruby/pdfcraft/test/dummy/app/controllers/home_controller.rb:6:in `block (2 levels) in index'
|
1499
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/mime_responds.rb:191:in `call'
|
1500
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/mime_responds.rb:191:in `respond_to'
|
1501
|
+
/Users/ryan/src/ruby/pdfcraft/test/dummy/app/controllers/home_controller.rb:4:in `index'
|
1502
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
1503
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/base.rb:189:in `process_action'
|
1504
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1505
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1506
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/callbacks.rb:383:in `_run__3002647121378657671__process_action__callbacks'
|
1507
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1508
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1509
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1510
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1511
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `block in instrument'
|
1512
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1513
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/notifications.rb:159:in `instrument'
|
1514
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1515
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
1516
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activerecord-4.0.2/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1517
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/base.rb:136:in `process'
|
1518
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/abstract_controller/rendering.rb:44:in `process'
|
1519
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal.rb:195:in `dispatch'
|
1520
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1521
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_controller/metal.rb:231:in `block in action'
|
1522
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/routing/route_set.rb:80:in `call'
|
1523
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
1524
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/routing/route_set.rb:48:in `call'
|
1525
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1526
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/journey/router.rb:59:in `each'
|
1527
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/journey/router.rb:59:in `call'
|
1528
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/routing/route_set.rb:680:in `call'
|
1529
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/etag.rb:23:in `call'
|
1530
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/conditionalget.rb:25:in `call'
|
1531
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
|
1532
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1533
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/flash.rb:241:in `call'
|
1534
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:225:in `context'
|
1535
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:220:in `call'
|
1536
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
1537
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activerecord-4.0.2/lib/active_record/query_cache.rb:36:in `call'
|
1538
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activerecord-4.0.2/lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
1539
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1540
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/callbacks.rb:373:in `_run__2978704734480990729__call__callbacks'
|
1541
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1542
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1543
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1544
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1545
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1546
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/rack/logger.rb:38:in `call_app'
|
1547
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/rack/logger.rb:20:in `block in call'
|
1548
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
1549
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/tagged_logging.rb:25:in `tagged'
|
1550
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/tagged_logging.rb:67:in `tagged'
|
1551
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/rack/logger.rb:20:in `call'
|
1552
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1553
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
|
1554
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/runtime.rb:17:in `call'
|
1555
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/activesupport-4.0.2/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
1556
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/static.rb:64:in `call'
|
1557
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-1.5.2/lib/rack/sendfile.rb:112:in `call'
|
1558
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/engine.rb:511:in `call'
|
1559
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/railties-4.0.2/lib/rails/application.rb:97:in `call'
|
1560
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-test-0.6.2/lib/rack/mock_session.rb:30:in `request'
|
1561
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-test-0.6.2/lib/rack/test.rb:230:in `process_request'
|
1562
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/rack-test-0.6.2/lib/rack/test.rb:123:in `request'
|
1563
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/testing/integration.rb:311:in `process'
|
1564
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/testing/integration.rb:32:in `get'
|
1565
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
|
1566
|
+
/Users/ryan/src/ruby/pdfcraft/test/integration/pdf_rendering_test.rb:6:in `block in <class:PdfRenderingTest>'
|
1567
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1258:in `run'
|
1568
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:933:in `block in _run_suite'
|
1569
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:926:in `map'
|
1570
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:926:in `_run_suite'
|
1571
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/parallel_each.rb:71:in `block in _run_suites'
|
1572
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/parallel_each.rb:71:in `map'
|
1573
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/parallel_each.rb:71:in `_run_suites'
|
1574
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:877:in `_run_anything'
|
1575
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1085:in `run_tests'
|
1576
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1072:in `block in _run'
|
1577
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1071:in `each'
|
1578
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1071:in `_run'
|
1579
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:1059:in `run'
|
1580
|
+
/Users/ryan/.gem/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:795:in `block in autorun'
|
1581
|
+
Completed 500 Internal Server Error in 1ms
|
1582
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1583
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1584
|
+
------------------------
|
1585
|
+
PdfcraftTest: test_truth
|
1586
|
+
------------------------
|
1587
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1588
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1589
|
+
---------------------------------------------------------------
|
1590
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1591
|
+
---------------------------------------------------------------
|
1592
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 18:31:13 -0500
|
1593
|
+
Processing by HomeController#another as PDF
|
1594
|
+
Rendered home/index.pdf.pdfcraft (1.9ms)
|
1595
|
+
Completed 500 Internal Server Error in 6ms
|
1596
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1597
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1598
|
+
-----------------------------------------------------
|
1599
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
1600
|
+
-----------------------------------------------------
|
1601
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 18:31:13 -0500
|
1602
|
+
Processing by HomeController#partials as PDF
|
1603
|
+
Completed 500 Internal Server Error in 2ms
|
1604
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1605
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1606
|
+
--------------------------------------------------------
|
1607
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
1608
|
+
--------------------------------------------------------
|
1609
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 18:31:13 -0500
|
1610
|
+
Processing by HomeController#index as PDF
|
1611
|
+
Completed 500 Internal Server Error in 1ms
|
1612
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1613
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1614
|
+
------------------------
|
1615
|
+
PdfcraftTest: test_truth
|
1616
|
+
------------------------
|
1617
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1618
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1619
|
+
---------------------------------------------------------------
|
1620
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1621
|
+
---------------------------------------------------------------
|
1622
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 18:31:50 -0500
|
1623
|
+
Processing by HomeController#another as PDF
|
1624
|
+
Rendered home/index.pdf.pdfcraft (78.5ms)
|
1625
|
+
Rendered text template (0.0ms)
|
1626
|
+
Sent data contents.pdf (25.0ms)
|
1627
|
+
Completed 200 OK in 108ms (Views: 107.5ms | ActiveRecord: 0.0ms)
|
1628
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1629
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1630
|
+
-----------------------------------------------------
|
1631
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
1632
|
+
-----------------------------------------------------
|
1633
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 18:31:50 -0500
|
1634
|
+
Processing by HomeController#partials as PDF
|
1635
|
+
Rendered home/_the_partial.pdf.pdfcraft (41.5ms)
|
1636
|
+
Sent data contents.pdf (0.4ms)
|
1637
|
+
Completed 200 OK in 75ms (Views: 75.2ms | ActiveRecord: 0.0ms)
|
1638
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1639
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1640
|
+
--------------------------------------------------------
|
1641
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
1642
|
+
--------------------------------------------------------
|
1643
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 18:31:50 -0500
|
1644
|
+
Processing by HomeController#index as PDF
|
1645
|
+
Sent data contents.pdf (0.3ms)
|
1646
|
+
Completed 200 OK in 35ms (Views: 35.0ms | ActiveRecord: 0.0ms)
|
1647
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1648
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1649
|
+
------------------------
|
1650
|
+
PdfcraftTest: test_truth
|
1651
|
+
------------------------
|
1652
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1653
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1654
|
+
---------------------------------------------------------------
|
1655
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1656
|
+
---------------------------------------------------------------
|
1657
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 18:43:35 -0500
|
1658
|
+
Processing by HomeController#another as PDF
|
1659
|
+
Rendered home/index.pdf.pdfcraft (44.7ms)
|
1660
|
+
Rendered text template (0.0ms)
|
1661
|
+
Sent data contents.pdf (0.9ms)
|
1662
|
+
Completed 200 OK in 50ms (Views: 49.6ms | ActiveRecord: 0.0ms)
|
1663
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1664
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1665
|
+
-------------------------------------------------------
|
1666
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
1667
|
+
-------------------------------------------------------
|
1668
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1669
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1670
|
+
-----------------------------------------------------
|
1671
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
1672
|
+
-----------------------------------------------------
|
1673
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 18:43:35 -0500
|
1674
|
+
Processing by HomeController#partials as PDF
|
1675
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.5ms)
|
1676
|
+
Sent data contents.pdf (0.3ms)
|
1677
|
+
Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
1678
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1679
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1680
|
+
--------------------------------------------------------
|
1681
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
1682
|
+
--------------------------------------------------------
|
1683
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 18:43:35 -0500
|
1684
|
+
Processing by HomeController#index as PDF
|
1685
|
+
Sent data contents.pdf (0.2ms)
|
1686
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
1687
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1688
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1689
|
+
------------------------
|
1690
|
+
PdfcraftTest: test_truth
|
1691
|
+
------------------------
|
1692
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1693
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1694
|
+
---------------------------------------------------------------
|
1695
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1696
|
+
---------------------------------------------------------------
|
1697
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 18:44:24 -0500
|
1698
|
+
Processing by HomeController#another as PDF
|
1699
|
+
Rendered home/index.pdf.pdfcraft (45.7ms)
|
1700
|
+
Rendered text template (0.0ms)
|
1701
|
+
Sent data contents.pdf (0.9ms)
|
1702
|
+
Completed 200 OK in 51ms (Views: 50.6ms | ActiveRecord: 0.0ms)
|
1703
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1704
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1705
|
+
-------------------------------------------------------
|
1706
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
1707
|
+
-------------------------------------------------------
|
1708
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1709
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1710
|
+
-----------------------------------------------------
|
1711
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
1712
|
+
-----------------------------------------------------
|
1713
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 18:44:24 -0500
|
1714
|
+
Processing by HomeController#partials as PDF
|
1715
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.4ms)
|
1716
|
+
Sent data contents.pdf (0.3ms)
|
1717
|
+
Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
1718
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1719
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1720
|
+
--------------------------------------------------------
|
1721
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
1722
|
+
--------------------------------------------------------
|
1723
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 18:44:24 -0500
|
1724
|
+
Processing by HomeController#index as PDF
|
1725
|
+
Sent data contents.pdf (0.3ms)
|
1726
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
1727
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1728
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1729
|
+
------------------------
|
1730
|
+
PdfcraftTest: test_truth
|
1731
|
+
------------------------
|
1732
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1733
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1734
|
+
---------------------------------------------------------------
|
1735
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1736
|
+
---------------------------------------------------------------
|
1737
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 18:51:32 -0500
|
1738
|
+
Processing by HomeController#another as PDF
|
1739
|
+
Rendered home/index.pdf.pdfcraft (44.1ms)
|
1740
|
+
Rendered text template (0.0ms)
|
1741
|
+
Sent data contents.pdf (0.9ms)
|
1742
|
+
Completed 200 OK in 49ms (Views: 49.0ms | ActiveRecord: 0.0ms)
|
1743
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1744
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1745
|
+
-------------------------------------------------------
|
1746
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
1747
|
+
-------------------------------------------------------
|
1748
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1749
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1750
|
+
-----------------------------------------------------
|
1751
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
1752
|
+
-----------------------------------------------------
|
1753
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 18:51:32 -0500
|
1754
|
+
Processing by HomeController#partials as PDF
|
1755
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.5ms)
|
1756
|
+
Sent data contents.pdf (0.3ms)
|
1757
|
+
Completed 200 OK in 6ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
1758
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1759
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1760
|
+
--------------------------------------------------------
|
1761
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
1762
|
+
--------------------------------------------------------
|
1763
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 18:51:32 -0500
|
1764
|
+
Processing by HomeController#index as PDF
|
1765
|
+
Sent data contents.pdf (0.2ms)
|
1766
|
+
Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
1767
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1768
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1769
|
+
------------------------
|
1770
|
+
PdfcraftTest: test_truth
|
1771
|
+
------------------------
|
1772
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1773
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1774
|
+
---------------------------------------------------------------
|
1775
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1776
|
+
---------------------------------------------------------------
|
1777
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 18:52:06 -0500
|
1778
|
+
Processing by HomeController#another as PDF
|
1779
|
+
Rendered home/index.pdf.pdfcraft (46.8ms)
|
1780
|
+
Rendered text template (0.0ms)
|
1781
|
+
Sent data contents.pdf (0.9ms)
|
1782
|
+
Completed 200 OK in 52ms (Views: 51.6ms | ActiveRecord: 0.0ms)
|
1783
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1784
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1785
|
+
-------------------------------------------------------
|
1786
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
1787
|
+
-------------------------------------------------------
|
1788
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-29 18:52:06 -0500
|
1789
|
+
Processing by HomeController#helpers as PDF
|
1790
|
+
Sent data contents.pdf (0.3ms)
|
1791
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
1792
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1793
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1794
|
+
-----------------------------------------------------
|
1795
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
1796
|
+
-----------------------------------------------------
|
1797
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 18:52:06 -0500
|
1798
|
+
Processing by HomeController#partials as PDF
|
1799
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
1800
|
+
Sent data contents.pdf (0.3ms)
|
1801
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
1802
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1803
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1804
|
+
--------------------------------------------------------
|
1805
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
1806
|
+
--------------------------------------------------------
|
1807
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 18:52:06 -0500
|
1808
|
+
Processing by HomeController#index as PDF
|
1809
|
+
Sent data contents.pdf (0.2ms)
|
1810
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
1811
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1812
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1813
|
+
------------------------
|
1814
|
+
PdfcraftTest: test_truth
|
1815
|
+
------------------------
|
1816
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1817
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1818
|
+
---------------------------------------------------------------
|
1819
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1820
|
+
---------------------------------------------------------------
|
1821
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 21:35:39 -0500
|
1822
|
+
Processing by HomeController#another as PDF
|
1823
|
+
Rendered home/index.pdf.pdfcraft (47.3ms)
|
1824
|
+
Rendered text template (0.0ms)
|
1825
|
+
Sent data contents.pdf (0.9ms)
|
1826
|
+
Completed 200 OK in 53ms (Views: 52.4ms | ActiveRecord: 0.0ms)
|
1827
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1828
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1829
|
+
-------------------------------------------------------
|
1830
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
1831
|
+
-------------------------------------------------------
|
1832
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-29 21:35:39 -0500
|
1833
|
+
Processing by HomeController#helpers as PDF
|
1834
|
+
Sent data contents.pdf (0.3ms)
|
1835
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
1836
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1837
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1838
|
+
-----------------------------------------------------
|
1839
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
1840
|
+
-----------------------------------------------------
|
1841
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 21:35:39 -0500
|
1842
|
+
Processing by HomeController#partials as PDF
|
1843
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.8ms)
|
1844
|
+
Sent data contents.pdf (0.3ms)
|
1845
|
+
Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
|
1846
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1847
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1848
|
+
--------------------------------------------------------
|
1849
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
1850
|
+
--------------------------------------------------------
|
1851
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 21:35:39 -0500
|
1852
|
+
Processing by HomeController#index as PDF
|
1853
|
+
Sent data contents.pdf (0.2ms)
|
1854
|
+
Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
1855
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1856
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1857
|
+
------------------------
|
1858
|
+
PdfcraftTest: test_truth
|
1859
|
+
------------------------
|
1860
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1861
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1862
|
+
---------------------------------------------------------------
|
1863
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1864
|
+
---------------------------------------------------------------
|
1865
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 21:39:02 -0500
|
1866
|
+
Processing by HomeController#another as PDF
|
1867
|
+
Rendered home/index.pdf.pdfcraft (45.7ms)
|
1868
|
+
Rendered text template (0.0ms)
|
1869
|
+
Sent data contents.pdf (0.9ms)
|
1870
|
+
Completed 200 OK in 51ms (Views: 50.6ms | ActiveRecord: 0.0ms)
|
1871
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1872
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1873
|
+
-------------------------------------------------------
|
1874
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
1875
|
+
-------------------------------------------------------
|
1876
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-29 21:39:02 -0500
|
1877
|
+
Processing by HomeController#helpers as PDF
|
1878
|
+
Sent data contents.pdf (0.3ms)
|
1879
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
1880
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1881
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1882
|
+
-----------------------------------------------------
|
1883
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
1884
|
+
-----------------------------------------------------
|
1885
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 21:39:02 -0500
|
1886
|
+
Processing by HomeController#partials as PDF
|
1887
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
1888
|
+
Sent data contents.pdf (0.3ms)
|
1889
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
1890
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1891
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1892
|
+
--------------------------------------------------------
|
1893
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
1894
|
+
--------------------------------------------------------
|
1895
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 21:39:02 -0500
|
1896
|
+
Processing by HomeController#index as PDF
|
1897
|
+
Sent data contents.pdf (0.2ms)
|
1898
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
1899
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1900
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1901
|
+
------------------------
|
1902
|
+
PdfcraftTest: test_truth
|
1903
|
+
------------------------
|
1904
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1905
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1906
|
+
---------------------------------------------------------------
|
1907
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1908
|
+
---------------------------------------------------------------
|
1909
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-29 21:39:07 -0500
|
1910
|
+
Processing by HomeController#another as PDF
|
1911
|
+
Rendered home/index.pdf.pdfcraft (44.3ms)
|
1912
|
+
Rendered text template (0.0ms)
|
1913
|
+
Sent data contents.pdf (0.9ms)
|
1914
|
+
Completed 200 OK in 49ms (Views: 49.1ms | ActiveRecord: 0.0ms)
|
1915
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1916
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1917
|
+
-------------------------------------------------------
|
1918
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
1919
|
+
-------------------------------------------------------
|
1920
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-29 21:39:07 -0500
|
1921
|
+
Processing by HomeController#helpers as PDF
|
1922
|
+
Sent data contents.pdf (0.3ms)
|
1923
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
1924
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1925
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1926
|
+
-----------------------------------------------------
|
1927
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
1928
|
+
-----------------------------------------------------
|
1929
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-29 21:39:07 -0500
|
1930
|
+
Processing by HomeController#partials as PDF
|
1931
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.8ms)
|
1932
|
+
Sent data contents.pdf (0.3ms)
|
1933
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
|
1934
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1935
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1936
|
+
--------------------------------------------------------
|
1937
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
1938
|
+
--------------------------------------------------------
|
1939
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-29 21:39:07 -0500
|
1940
|
+
Processing by HomeController#index as PDF
|
1941
|
+
Sent data contents.pdf (0.4ms)
|
1942
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
1943
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1944
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1945
|
+
------------------------
|
1946
|
+
PdfcraftTest: test_truth
|
1947
|
+
------------------------
|
1948
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1949
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1950
|
+
---------------------------------------------------------------
|
1951
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1952
|
+
---------------------------------------------------------------
|
1953
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-30 20:22:06 -0500
|
1954
|
+
Processing by HomeController#another as PDF
|
1955
|
+
Rendered home/index.pdf.pdfcraft (61.4ms)
|
1956
|
+
Rendered text template (0.0ms)
|
1957
|
+
Sent data contents.pdf (1.6ms)
|
1958
|
+
Completed 200 OK in 71ms (Views: 70.4ms | ActiveRecord: 0.0ms)
|
1959
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1960
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1961
|
+
-------------------------------------------------------
|
1962
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
1963
|
+
-------------------------------------------------------
|
1964
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-30 20:22:06 -0500
|
1965
|
+
Processing by HomeController#helpers as PDF
|
1966
|
+
Sent data contents.pdf (0.3ms)
|
1967
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
1968
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1969
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1970
|
+
-----------------------------------------------------
|
1971
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
1972
|
+
-----------------------------------------------------
|
1973
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-30 20:22:06 -0500
|
1974
|
+
Processing by HomeController#partials as PDF
|
1975
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.9ms)
|
1976
|
+
Sent data contents.pdf (0.3ms)
|
1977
|
+
Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
|
1978
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1979
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1980
|
+
--------------------------------------------------------
|
1981
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
1982
|
+
--------------------------------------------------------
|
1983
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-30 20:22:06 -0500
|
1984
|
+
Processing by HomeController#index as PDF
|
1985
|
+
Sent data contents.pdf (0.2ms)
|
1986
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
1987
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1988
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1989
|
+
------------------------
|
1990
|
+
PdfcraftTest: test_truth
|
1991
|
+
------------------------
|
1992
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1993
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1994
|
+
---------------------------------------------------------------
|
1995
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
1996
|
+
---------------------------------------------------------------
|
1997
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-30 20:22:32 -0500
|
1998
|
+
Processing by HomeController#another as PDF
|
1999
|
+
Rendered home/index.pdf.pdfcraft (45.2ms)
|
2000
|
+
Rendered text template (0.0ms)
|
2001
|
+
Sent data contents.pdf (0.9ms)
|
2002
|
+
Completed 200 OK in 50ms (Views: 50.0ms | ActiveRecord: 0.0ms)
|
2003
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2004
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2005
|
+
-------------------------------------------------------
|
2006
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2007
|
+
-------------------------------------------------------
|
2008
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-30 20:22:33 -0500
|
2009
|
+
Processing by HomeController#helpers as PDF
|
2010
|
+
Sent data contents.pdf (0.4ms)
|
2011
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
2012
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2013
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2014
|
+
-----------------------------------------------------
|
2015
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2016
|
+
-----------------------------------------------------
|
2017
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-30 20:22:33 -0500
|
2018
|
+
Processing by HomeController#partials as PDF
|
2019
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.8ms)
|
2020
|
+
Sent data contents.pdf (0.3ms)
|
2021
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
2022
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2023
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2024
|
+
--------------------------------------------------------
|
2025
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2026
|
+
--------------------------------------------------------
|
2027
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-30 20:22:33 -0500
|
2028
|
+
Processing by HomeController#index as PDF
|
2029
|
+
Sent data contents.pdf (0.2ms)
|
2030
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
2031
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2032
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2033
|
+
------------------------
|
2034
|
+
PdfcraftTest: test_truth
|
2035
|
+
------------------------
|
2036
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2037
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2038
|
+
---------------------------------------------------------------
|
2039
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2040
|
+
---------------------------------------------------------------
|
2041
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-30 20:23:15 -0500
|
2042
|
+
Processing by HomeController#another as PDF
|
2043
|
+
Rendered home/index.pdf.pdfcraft (49.8ms)
|
2044
|
+
Rendered text template (0.0ms)
|
2045
|
+
Sent data contents.pdf (1.0ms)
|
2046
|
+
Completed 200 OK in 55ms (Views: 54.7ms | ActiveRecord: 0.0ms)
|
2047
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2048
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2049
|
+
-------------------------------------------------------
|
2050
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2051
|
+
-------------------------------------------------------
|
2052
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-30 20:23:15 -0500
|
2053
|
+
Processing by HomeController#helpers as PDF
|
2054
|
+
Sent data contents.pdf (0.3ms)
|
2055
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
2056
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2057
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2058
|
+
-----------------------------------------------------
|
2059
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2060
|
+
-----------------------------------------------------
|
2061
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-30 20:23:15 -0500
|
2062
|
+
Processing by HomeController#partials as PDF
|
2063
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.8ms)
|
2064
|
+
Sent data contents.pdf (0.3ms)
|
2065
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
2066
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2067
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2068
|
+
--------------------------------------------------------
|
2069
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2070
|
+
--------------------------------------------------------
|
2071
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-30 20:23:15 -0500
|
2072
|
+
Processing by HomeController#index as PDF
|
2073
|
+
Sent data contents.pdf (0.2ms)
|
2074
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
2075
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2076
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2077
|
+
------------------------
|
2078
|
+
PdfcraftTest: test_truth
|
2079
|
+
------------------------
|
2080
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2081
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2082
|
+
---------------------------------------------------------------
|
2083
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2084
|
+
---------------------------------------------------------------
|
2085
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-30 20:24:07 -0500
|
2086
|
+
Processing by HomeController#another as PDF
|
2087
|
+
Rendered home/index.pdf.pdfcraft (49.3ms)
|
2088
|
+
Rendered text template (0.0ms)
|
2089
|
+
Sent data contents.pdf (0.9ms)
|
2090
|
+
Completed 200 OK in 55ms (Views: 54.4ms | ActiveRecord: 0.0ms)
|
2091
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2092
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2093
|
+
-------------------------------------------------------
|
2094
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2095
|
+
-------------------------------------------------------
|
2096
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-30 20:24:07 -0500
|
2097
|
+
Processing by HomeController#helpers as PDF
|
2098
|
+
Sent data contents.pdf (0.3ms)
|
2099
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
2100
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2101
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2102
|
+
-----------------------------------------------------
|
2103
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2104
|
+
-----------------------------------------------------
|
2105
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-30 20:24:07 -0500
|
2106
|
+
Processing by HomeController#partials as PDF
|
2107
|
+
Rendered home/_the_partial.pdf.pdfcraft (2.1ms)
|
2108
|
+
Sent data contents.pdf (0.4ms)
|
2109
|
+
Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
|
2110
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2111
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2112
|
+
--------------------------------------------------------
|
2113
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2114
|
+
--------------------------------------------------------
|
2115
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-30 20:24:07 -0500
|
2116
|
+
Processing by HomeController#index as PDF
|
2117
|
+
Sent data contents.pdf (0.2ms)
|
2118
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
2119
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2120
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2121
|
+
------------------------
|
2122
|
+
PdfcraftTest: test_truth
|
2123
|
+
------------------------
|
2124
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2125
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2126
|
+
---------------------------------------------------------------
|
2127
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2128
|
+
---------------------------------------------------------------
|
2129
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-30 20:29:23 -0500
|
2130
|
+
Processing by HomeController#another as PDF
|
2131
|
+
Rendered home/index.pdf.pdfcraft (51.8ms)
|
2132
|
+
Rendered text template (0.0ms)
|
2133
|
+
Sent data contents.pdf (0.9ms)
|
2134
|
+
Completed 200 OK in 57ms (Views: 56.7ms | ActiveRecord: 0.0ms)
|
2135
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2136
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2137
|
+
-------------------------------------------------------
|
2138
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2139
|
+
-------------------------------------------------------
|
2140
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-30 20:29:23 -0500
|
2141
|
+
Processing by HomeController#helpers as PDF
|
2142
|
+
Sent data contents.pdf (0.5ms)
|
2143
|
+
Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
2144
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2145
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2146
|
+
-----------------------------------------------------
|
2147
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2148
|
+
-----------------------------------------------------
|
2149
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-30 20:29:23 -0500
|
2150
|
+
Processing by HomeController#partials as PDF
|
2151
|
+
Rendered home/_the_partial.pdf.pdfcraft (2.3ms)
|
2152
|
+
Sent data contents.pdf (0.4ms)
|
2153
|
+
Completed 200 OK in 33ms (Views: 32.9ms | ActiveRecord: 0.0ms)
|
2154
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2155
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2156
|
+
--------------------------------------------------------
|
2157
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2158
|
+
--------------------------------------------------------
|
2159
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-30 20:29:23 -0500
|
2160
|
+
Processing by HomeController#index as PDF
|
2161
|
+
Sent data contents.pdf (0.2ms)
|
2162
|
+
Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
2163
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2164
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2165
|
+
------------------------
|
2166
|
+
PdfcraftTest: test_truth
|
2167
|
+
------------------------
|
2168
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2169
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2170
|
+
---------------------------------------------------------------
|
2171
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2172
|
+
---------------------------------------------------------------
|
2173
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-30 20:31:52 -0500
|
2174
|
+
Processing by HomeController#another as PDF
|
2175
|
+
Rendered home/index.pdf.pdfcraft (45.3ms)
|
2176
|
+
Rendered text template (0.0ms)
|
2177
|
+
Sent data contents.pdf (0.9ms)
|
2178
|
+
Completed 200 OK in 50ms (Views: 50.2ms | ActiveRecord: 0.0ms)
|
2179
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2180
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2181
|
+
-------------------------------------------------------
|
2182
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2183
|
+
-------------------------------------------------------
|
2184
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-30 20:31:52 -0500
|
2185
|
+
Processing by HomeController#helpers as PDF
|
2186
|
+
Sent data contents.pdf (0.3ms)
|
2187
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
2188
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2189
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2190
|
+
-----------------------------------------------------
|
2191
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2192
|
+
-----------------------------------------------------
|
2193
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-30 20:31:52 -0500
|
2194
|
+
Processing by HomeController#partials as PDF
|
2195
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.8ms)
|
2196
|
+
Sent data contents.pdf (0.3ms)
|
2197
|
+
Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
|
2198
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2199
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2200
|
+
--------------------------------------------------------
|
2201
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2202
|
+
--------------------------------------------------------
|
2203
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-30 20:31:52 -0500
|
2204
|
+
Processing by HomeController#index as PDF
|
2205
|
+
Sent data contents.pdf (0.2ms)
|
2206
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
2207
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2208
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2209
|
+
------------------------
|
2210
|
+
PdfcraftTest: test_truth
|
2211
|
+
------------------------
|
2212
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2213
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2214
|
+
----------------------------------------------------
|
2215
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2216
|
+
----------------------------------------------------
|
2217
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2218
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2219
|
+
---------------------------------------------------------------
|
2220
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2221
|
+
---------------------------------------------------------------
|
2222
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 20:37:09 -0500
|
2223
|
+
Processing by HomeController#another as PDF
|
2224
|
+
Sent data contents.pdf (2.0ms)
|
2225
|
+
Completed 200 OK in 74ms (Views: 74.1ms | ActiveRecord: 0.0ms)
|
2226
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2227
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2228
|
+
-------------------------------------------------------
|
2229
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2230
|
+
-------------------------------------------------------
|
2231
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 20:37:09 -0500
|
2232
|
+
Processing by HomeController#helpers as PDF
|
2233
|
+
Sent data contents.pdf (0.3ms)
|
2234
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
2235
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2236
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2237
|
+
-----------------------------------------------------
|
2238
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2239
|
+
-----------------------------------------------------
|
2240
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 20:37:09 -0500
|
2241
|
+
Processing by HomeController#partials as PDF
|
2242
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.8ms)
|
2243
|
+
Sent data contents.pdf (0.3ms)
|
2244
|
+
Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms)
|
2245
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2246
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2247
|
+
--------------------------------------------------------
|
2248
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2249
|
+
--------------------------------------------------------
|
2250
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 20:37:09 -0500
|
2251
|
+
Processing by HomeController#index as PDF
|
2252
|
+
Sent data contents.pdf (0.2ms)
|
2253
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
2254
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2255
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2256
|
+
----------------------------------------------------
|
2257
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2258
|
+
----------------------------------------------------
|
2259
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 20:51:57 -0500
|
2260
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2261
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2262
|
+
---------------------------------------------------------------
|
2263
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2264
|
+
---------------------------------------------------------------
|
2265
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 20:51:57 -0500
|
2266
|
+
Processing by HomeController#another as PDF
|
2267
|
+
Sent data contents.pdf (0.9ms)
|
2268
|
+
Completed 200 OK in 50ms (Views: 50.1ms | ActiveRecord: 0.0ms)
|
2269
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2270
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2271
|
+
-------------------------------------------------------
|
2272
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2273
|
+
-------------------------------------------------------
|
2274
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 20:51:57 -0500
|
2275
|
+
Processing by HomeController#helpers as PDF
|
2276
|
+
Sent data contents.pdf (0.2ms)
|
2277
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
2278
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2279
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2280
|
+
-----------------------------------------------------
|
2281
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2282
|
+
-----------------------------------------------------
|
2283
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 20:51:57 -0500
|
2284
|
+
Processing by HomeController#partials as PDF
|
2285
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
2286
|
+
Sent data contents.pdf (0.3ms)
|
2287
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
2288
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2289
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2290
|
+
--------------------------------------------------------
|
2291
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2292
|
+
--------------------------------------------------------
|
2293
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 20:51:57 -0500
|
2294
|
+
Processing by HomeController#index as PDF
|
2295
|
+
Sent data contents.pdf (0.2ms)
|
2296
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
2297
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2298
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2299
|
+
----------------------------------------------------
|
2300
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2301
|
+
----------------------------------------------------
|
2302
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 20:52:44 -0500
|
2303
|
+
Processing by HomeController#pdf_layout as PDF
|
2304
|
+
Completed 500 Internal Server Error in 8ms
|
2305
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2306
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2307
|
+
---------------------------------------------------------------
|
2308
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2309
|
+
---------------------------------------------------------------
|
2310
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 20:52:44 -0500
|
2311
|
+
Processing by HomeController#another as PDF
|
2312
|
+
Sent data contents.pdf (0.9ms)
|
2313
|
+
Completed 200 OK in 48ms (Views: 48.2ms | ActiveRecord: 0.0ms)
|
2314
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2315
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2316
|
+
-------------------------------------------------------
|
2317
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2318
|
+
-------------------------------------------------------
|
2319
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 20:52:44 -0500
|
2320
|
+
Processing by HomeController#helpers as PDF
|
2321
|
+
Sent data contents.pdf (0.3ms)
|
2322
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
2323
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2324
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2325
|
+
-----------------------------------------------------
|
2326
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2327
|
+
-----------------------------------------------------
|
2328
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 20:52:44 -0500
|
2329
|
+
Processing by HomeController#partials as PDF
|
2330
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.8ms)
|
2331
|
+
Sent data contents.pdf (0.3ms)
|
2332
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
2333
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2334
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2335
|
+
--------------------------------------------------------
|
2336
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2337
|
+
--------------------------------------------------------
|
2338
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 20:52:44 -0500
|
2339
|
+
Processing by HomeController#index as PDF
|
2340
|
+
Sent data contents.pdf (0.2ms)
|
2341
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
2342
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2343
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2344
|
+
----------------------------------------------------
|
2345
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2346
|
+
----------------------------------------------------
|
2347
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 20:52:53 -0500
|
2348
|
+
Processing by HomeController#pdf_layout as PDF
|
2349
|
+
Completed 500 Internal Server Error in 5ms
|
2350
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2351
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2352
|
+
---------------------------------------------------------------
|
2353
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2354
|
+
---------------------------------------------------------------
|
2355
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 20:52:53 -0500
|
2356
|
+
Processing by HomeController#another as PDF
|
2357
|
+
Sent data contents.pdf (0.8ms)
|
2358
|
+
Completed 200 OK in 48ms (Views: 47.4ms | ActiveRecord: 0.0ms)
|
2359
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2360
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2361
|
+
-------------------------------------------------------
|
2362
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2363
|
+
-------------------------------------------------------
|
2364
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 20:52:53 -0500
|
2365
|
+
Processing by HomeController#helpers as PDF
|
2366
|
+
Sent data contents.pdf (0.3ms)
|
2367
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
2368
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2369
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2370
|
+
-----------------------------------------------------
|
2371
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2372
|
+
-----------------------------------------------------
|
2373
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 20:52:53 -0500
|
2374
|
+
Processing by HomeController#partials as PDF
|
2375
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
2376
|
+
Sent data contents.pdf (0.3ms)
|
2377
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
2378
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2379
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2380
|
+
--------------------------------------------------------
|
2381
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2382
|
+
--------------------------------------------------------
|
2383
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 20:52:53 -0500
|
2384
|
+
Processing by HomeController#index as PDF
|
2385
|
+
Sent data contents.pdf (0.2ms)
|
2386
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
2387
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2388
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2389
|
+
----------------------------------------------------
|
2390
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2391
|
+
----------------------------------------------------
|
2392
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 20:54:15 -0500
|
2393
|
+
Processing by HomeController#pdf_layout as PDF
|
2394
|
+
Rendered home/pdf_layout.pdf.pdfcraft (45.6ms)
|
2395
|
+
Rendered text template (0.0ms)
|
2396
|
+
Sent data contents.pdf (1.0ms)
|
2397
|
+
Completed 200 OK in 51ms (Views: 51.0ms | ActiveRecord: 0.0ms)
|
2398
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2399
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2400
|
+
---------------------------------------------------------------
|
2401
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2402
|
+
---------------------------------------------------------------
|
2403
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 20:54:15 -0500
|
2404
|
+
Processing by HomeController#another as PDF
|
2405
|
+
Sent data contents.pdf (0.3ms)
|
2406
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
2407
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2408
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2409
|
+
-------------------------------------------------------
|
2410
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2411
|
+
-------------------------------------------------------
|
2412
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 20:54:15 -0500
|
2413
|
+
Processing by HomeController#helpers as PDF
|
2414
|
+
Sent data contents.pdf (0.3ms)
|
2415
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
2416
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2417
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2418
|
+
-----------------------------------------------------
|
2419
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2420
|
+
-----------------------------------------------------
|
2421
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 20:54:15 -0500
|
2422
|
+
Processing by HomeController#partials as PDF
|
2423
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.6ms)
|
2424
|
+
Sent data contents.pdf (0.3ms)
|
2425
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
2426
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2427
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2428
|
+
--------------------------------------------------------
|
2429
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2430
|
+
--------------------------------------------------------
|
2431
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 20:54:15 -0500
|
2432
|
+
Processing by HomeController#index as PDF
|
2433
|
+
Sent data contents.pdf (0.3ms)
|
2434
|
+
Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.0ms)
|
2435
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2436
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2437
|
+
----------------------------------------------------
|
2438
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2439
|
+
----------------------------------------------------
|
2440
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 20:54:45 -0500
|
2441
|
+
Processing by HomeController#pdf_layout as PDF
|
2442
|
+
Rendered home/pdf_layout.pdf.pdfcraft (45.9ms)
|
2443
|
+
Rendered text template (0.0ms)
|
2444
|
+
Sent data contents.pdf (1.0ms)
|
2445
|
+
Completed 200 OK in 51ms (Views: 51.1ms | ActiveRecord: 0.0ms)
|
2446
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2447
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2448
|
+
---------------------------------------------------------------
|
2449
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2450
|
+
---------------------------------------------------------------
|
2451
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 20:54:46 -0500
|
2452
|
+
Processing by HomeController#another as PDF
|
2453
|
+
Sent data contents.pdf (0.3ms)
|
2454
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
2455
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2456
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2457
|
+
-------------------------------------------------------
|
2458
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2459
|
+
-------------------------------------------------------
|
2460
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 20:54:46 -0500
|
2461
|
+
Processing by HomeController#helpers as PDF
|
2462
|
+
Sent data contents.pdf (0.3ms)
|
2463
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
2464
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2465
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2466
|
+
-----------------------------------------------------
|
2467
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2468
|
+
-----------------------------------------------------
|
2469
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 20:54:46 -0500
|
2470
|
+
Processing by HomeController#partials as PDF
|
2471
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.6ms)
|
2472
|
+
Sent data contents.pdf (0.3ms)
|
2473
|
+
Completed 200 OK in 9ms (Views: 9.4ms | ActiveRecord: 0.0ms)
|
2474
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2475
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2476
|
+
--------------------------------------------------------
|
2477
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2478
|
+
--------------------------------------------------------
|
2479
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 20:54:46 -0500
|
2480
|
+
Processing by HomeController#index as PDF
|
2481
|
+
Sent data contents.pdf (0.3ms)
|
2482
|
+
Completed 200 OK in 22ms (Views: 21.7ms | ActiveRecord: 0.0ms)
|
2483
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2484
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2485
|
+
----------------------------------------------------
|
2486
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2487
|
+
----------------------------------------------------
|
2488
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 20:55:23 -0500
|
2489
|
+
Processing by HomeController#pdf_layout as PDF
|
2490
|
+
Rendered home/pdf_layout.pdf.pdfcraft (44.6ms)
|
2491
|
+
Rendered text template (0.0ms)
|
2492
|
+
Sent data contents.pdf (0.9ms)
|
2493
|
+
Completed 200 OK in 50ms (Views: 49.6ms | ActiveRecord: 0.0ms)
|
2494
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2495
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2496
|
+
---------------------------------------------------------------
|
2497
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2498
|
+
---------------------------------------------------------------
|
2499
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 20:55:23 -0500
|
2500
|
+
Processing by HomeController#another as PDF
|
2501
|
+
Sent data contents.pdf (0.3ms)
|
2502
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
2503
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2504
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2505
|
+
-------------------------------------------------------
|
2506
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2507
|
+
-------------------------------------------------------
|
2508
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 20:55:23 -0500
|
2509
|
+
Processing by HomeController#helpers as PDF
|
2510
|
+
Sent data contents.pdf (0.5ms)
|
2511
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
2512
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2513
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2514
|
+
-----------------------------------------------------
|
2515
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2516
|
+
-----------------------------------------------------
|
2517
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 20:55:23 -0500
|
2518
|
+
Processing by HomeController#partials as PDF
|
2519
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
2520
|
+
Sent data contents.pdf (0.3ms)
|
2521
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
2522
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2523
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2524
|
+
--------------------------------------------------------
|
2525
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2526
|
+
--------------------------------------------------------
|
2527
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 20:55:23 -0500
|
2528
|
+
Processing by HomeController#index as PDF
|
2529
|
+
Sent data contents.pdf (0.3ms)
|
2530
|
+
Completed 200 OK in 20ms (Views: 20.3ms | ActiveRecord: 0.0ms)
|
2531
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2532
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2533
|
+
----------------------------------------------------
|
2534
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2535
|
+
----------------------------------------------------
|
2536
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 20:56:30 -0500
|
2537
|
+
Processing by HomeController#pdf_layout as PDF
|
2538
|
+
Rendered home/pdf_layout.pdf.pdfcraft (45.3ms)
|
2539
|
+
Rendered text template (0.0ms)
|
2540
|
+
Sent data contents.pdf (1.0ms)
|
2541
|
+
Completed 200 OK in 51ms (Views: 50.6ms | ActiveRecord: 0.0ms)
|
2542
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2543
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2544
|
+
---------------------------------------------------------------
|
2545
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2546
|
+
---------------------------------------------------------------
|
2547
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 20:56:30 -0500
|
2548
|
+
Processing by HomeController#another as PDF
|
2549
|
+
Sent data contents.pdf (0.3ms)
|
2550
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
2551
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2552
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2553
|
+
-------------------------------------------------------
|
2554
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2555
|
+
-------------------------------------------------------
|
2556
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 20:56:30 -0500
|
2557
|
+
Processing by HomeController#helpers as PDF
|
2558
|
+
Sent data contents.pdf (0.3ms)
|
2559
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
2560
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2561
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2562
|
+
-----------------------------------------------------
|
2563
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2564
|
+
-----------------------------------------------------
|
2565
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 20:56:30 -0500
|
2566
|
+
Processing by HomeController#partials as PDF
|
2567
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
2568
|
+
Sent data contents.pdf (0.3ms)
|
2569
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
2570
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2571
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2572
|
+
--------------------------------------------------------
|
2573
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2574
|
+
--------------------------------------------------------
|
2575
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 20:56:30 -0500
|
2576
|
+
Processing by HomeController#index as PDF
|
2577
|
+
Sent data contents.pdf (0.3ms)
|
2578
|
+
Completed 200 OK in 23ms (Views: 22.6ms | ActiveRecord: 0.0ms)
|
2579
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2580
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2581
|
+
----------------------------------------------------
|
2582
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2583
|
+
----------------------------------------------------
|
2584
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 20:56:38 -0500
|
2585
|
+
Processing by HomeController#pdf_layout as PDF
|
2586
|
+
Rendered home/pdf_layout.pdf.pdfcraft (46.1ms)
|
2587
|
+
Rendered text template (0.0ms)
|
2588
|
+
Sent data contents.pdf (0.9ms)
|
2589
|
+
Completed 200 OK in 52ms (Views: 51.3ms | ActiveRecord: 0.0ms)
|
2590
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2591
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2592
|
+
---------------------------------------------------------------
|
2593
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2594
|
+
---------------------------------------------------------------
|
2595
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 20:56:38 -0500
|
2596
|
+
Processing by HomeController#another as PDF
|
2597
|
+
Sent data contents.pdf (0.3ms)
|
2598
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
2599
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2600
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2601
|
+
-------------------------------------------------------
|
2602
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2603
|
+
-------------------------------------------------------
|
2604
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 20:56:38 -0500
|
2605
|
+
Processing by HomeController#helpers as PDF
|
2606
|
+
Sent data contents.pdf (0.3ms)
|
2607
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
2608
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2609
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2610
|
+
-----------------------------------------------------
|
2611
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2612
|
+
-----------------------------------------------------
|
2613
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 20:56:38 -0500
|
2614
|
+
Processing by HomeController#partials as PDF
|
2615
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
2616
|
+
Sent data contents.pdf (0.3ms)
|
2617
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
2618
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2619
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2620
|
+
--------------------------------------------------------
|
2621
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2622
|
+
--------------------------------------------------------
|
2623
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 20:56:38 -0500
|
2624
|
+
Processing by HomeController#index as PDF
|
2625
|
+
Sent data contents.pdf (0.3ms)
|
2626
|
+
Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms)
|
2627
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2628
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2629
|
+
----------------------------------------------------
|
2630
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2631
|
+
----------------------------------------------------
|
2632
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:03:23 -0500
|
2633
|
+
Processing by HomeController#pdf_layout as PDF
|
2634
|
+
Rendered home/pdf_layout.pdf.pdfcraft (45.2ms)
|
2635
|
+
Rendered text template (0.0ms)
|
2636
|
+
Sent data contents.pdf (1.0ms)
|
2637
|
+
Completed 200 OK in 51ms (Views: 50.4ms | ActiveRecord: 0.0ms)
|
2638
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2639
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2640
|
+
---------------------------------------------------------------
|
2641
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2642
|
+
---------------------------------------------------------------
|
2643
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:03:24 -0500
|
2644
|
+
Processing by HomeController#another as PDF
|
2645
|
+
Sent data contents.pdf (0.3ms)
|
2646
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
2647
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2648
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2649
|
+
-------------------------------------------------------
|
2650
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2651
|
+
-------------------------------------------------------
|
2652
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:03:24 -0500
|
2653
|
+
Processing by HomeController#helpers as PDF
|
2654
|
+
Sent data contents.pdf (0.3ms)
|
2655
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
2656
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2657
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2658
|
+
-----------------------------------------------------
|
2659
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2660
|
+
-----------------------------------------------------
|
2661
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:03:24 -0500
|
2662
|
+
Processing by HomeController#partials as PDF
|
2663
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.6ms)
|
2664
|
+
Sent data contents.pdf (0.3ms)
|
2665
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
2666
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2667
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2668
|
+
--------------------------------------------------------
|
2669
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2670
|
+
--------------------------------------------------------
|
2671
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:03:24 -0500
|
2672
|
+
Processing by HomeController#index as PDF
|
2673
|
+
Sent data contents.pdf (0.3ms)
|
2674
|
+
Completed 200 OK in 21ms (Views: 20.9ms | ActiveRecord: 0.0ms)
|
2675
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2676
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2677
|
+
----------------------------------------------------
|
2678
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2679
|
+
----------------------------------------------------
|
2680
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:04:15 -0500
|
2681
|
+
Processing by HomeController#pdf_layout as PDF
|
2682
|
+
Rendered home/pdf_layout.pdf.pdfcraft (46.9ms)
|
2683
|
+
Rendered text template (0.0ms)
|
2684
|
+
Sent data contents.pdf (1.0ms)
|
2685
|
+
Completed 200 OK in 52ms (Views: 52.1ms | ActiveRecord: 0.0ms)
|
2686
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2687
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2688
|
+
---------------------------------------------------------------
|
2689
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2690
|
+
---------------------------------------------------------------
|
2691
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:04:15 -0500
|
2692
|
+
Processing by HomeController#another as PDF
|
2693
|
+
Sent data contents.pdf (0.3ms)
|
2694
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
2695
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2696
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2697
|
+
-------------------------------------------------------
|
2698
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2699
|
+
-------------------------------------------------------
|
2700
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:04:15 -0500
|
2701
|
+
Processing by HomeController#helpers as PDF
|
2702
|
+
Sent data contents.pdf (0.3ms)
|
2703
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
2704
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2705
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2706
|
+
-----------------------------------------------------
|
2707
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2708
|
+
-----------------------------------------------------
|
2709
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:04:15 -0500
|
2710
|
+
Processing by HomeController#partials as PDF
|
2711
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
2712
|
+
Sent data contents.pdf (0.3ms)
|
2713
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
2714
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2715
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2716
|
+
--------------------------------------------------------
|
2717
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2718
|
+
--------------------------------------------------------
|
2719
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:04:15 -0500
|
2720
|
+
Processing by HomeController#index as PDF
|
2721
|
+
Sent data contents.pdf (0.2ms)
|
2722
|
+
Completed 200 OK in 21ms (Views: 20.8ms | ActiveRecord: 0.0ms)
|
2723
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2724
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2725
|
+
----------------------------------------------------
|
2726
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2727
|
+
----------------------------------------------------
|
2728
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:06:50 -0500
|
2729
|
+
Processing by HomeController#pdf_layout as PDF
|
2730
|
+
Rendered home/pdf_layout.pdf.pdfcraft (44.5ms)
|
2731
|
+
Rendered text template (0.0ms)
|
2732
|
+
Sent data contents.pdf (1.0ms)
|
2733
|
+
Completed 200 OK in 50ms (Views: 49.6ms | ActiveRecord: 0.0ms)
|
2734
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2735
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2736
|
+
---------------------------------------------------------------
|
2737
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2738
|
+
---------------------------------------------------------------
|
2739
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:06:50 -0500
|
2740
|
+
Processing by HomeController#another as PDF
|
2741
|
+
Sent data contents.pdf (0.3ms)
|
2742
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
2743
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2744
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2745
|
+
-------------------------------------------------------
|
2746
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2747
|
+
-------------------------------------------------------
|
2748
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:06:50 -0500
|
2749
|
+
Processing by HomeController#helpers as PDF
|
2750
|
+
Sent data contents.pdf (0.4ms)
|
2751
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
2752
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2753
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2754
|
+
-----------------------------------------------------
|
2755
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2756
|
+
-----------------------------------------------------
|
2757
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:06:50 -0500
|
2758
|
+
Processing by HomeController#partials as PDF
|
2759
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
2760
|
+
Sent data contents.pdf (0.3ms)
|
2761
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
|
2762
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2763
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2764
|
+
--------------------------------------------------------
|
2765
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2766
|
+
--------------------------------------------------------
|
2767
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:06:50 -0500
|
2768
|
+
Processing by HomeController#index as PDF
|
2769
|
+
Sent data contents.pdf (0.2ms)
|
2770
|
+
Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.0ms)
|
2771
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2772
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2773
|
+
----------------------------------------------------
|
2774
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2775
|
+
----------------------------------------------------
|
2776
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:07:07 -0500
|
2777
|
+
Processing by HomeController#pdf_layout as PDF
|
2778
|
+
Rendered home/pdf_layout.pdf.pdfcraft (45.4ms)
|
2779
|
+
Rendered text template (0.0ms)
|
2780
|
+
Sent data contents.pdf (0.9ms)
|
2781
|
+
Completed 200 OK in 51ms (Views: 50.5ms | ActiveRecord: 0.0ms)
|
2782
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2783
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2784
|
+
---------------------------------------------------------------
|
2785
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2786
|
+
---------------------------------------------------------------
|
2787
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:07:07 -0500
|
2788
|
+
Processing by HomeController#another as PDF
|
2789
|
+
Sent data contents.pdf (0.3ms)
|
2790
|
+
Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
2791
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2792
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2793
|
+
-------------------------------------------------------
|
2794
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2795
|
+
-------------------------------------------------------
|
2796
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:07:07 -0500
|
2797
|
+
Processing by HomeController#helpers as PDF
|
2798
|
+
Sent data contents.pdf (0.3ms)
|
2799
|
+
Completed 200 OK in 3ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
2800
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2801
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2802
|
+
-----------------------------------------------------
|
2803
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2804
|
+
-----------------------------------------------------
|
2805
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:07:07 -0500
|
2806
|
+
Processing by HomeController#partials as PDF
|
2807
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.6ms)
|
2808
|
+
Sent data contents.pdf (0.3ms)
|
2809
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
2810
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2811
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2812
|
+
--------------------------------------------------------
|
2813
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2814
|
+
--------------------------------------------------------
|
2815
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:07:07 -0500
|
2816
|
+
Processing by HomeController#index as PDF
|
2817
|
+
Sent data contents.pdf (0.3ms)
|
2818
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
2819
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2820
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2821
|
+
----------------------------------------------------
|
2822
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2823
|
+
----------------------------------------------------
|
2824
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:11:02 -0500
|
2825
|
+
Processing by HomeController#pdf_layout as PDF
|
2826
|
+
Rendered home/pdf_layout.pdf.pdfcraft (47.5ms)
|
2827
|
+
Rendered text template (0.0ms)
|
2828
|
+
Sent data contents.pdf (1.0ms)
|
2829
|
+
Completed 200 OK in 53ms (Views: 52.8ms | ActiveRecord: 0.0ms)
|
2830
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2831
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2832
|
+
---------------------------------------------------------------
|
2833
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2834
|
+
---------------------------------------------------------------
|
2835
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:11:02 -0500
|
2836
|
+
Processing by HomeController#another as PDF
|
2837
|
+
Sent data contents.pdf (0.3ms)
|
2838
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
2839
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2840
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2841
|
+
-------------------------------------------------------
|
2842
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2843
|
+
-------------------------------------------------------
|
2844
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:11:02 -0500
|
2845
|
+
Processing by HomeController#helpers as PDF
|
2846
|
+
Sent data contents.pdf (0.3ms)
|
2847
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
2848
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2849
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2850
|
+
-----------------------------------------------------
|
2851
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2852
|
+
-----------------------------------------------------
|
2853
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:11:02 -0500
|
2854
|
+
Processing by HomeController#partials as PDF
|
2855
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
2856
|
+
Sent data contents.pdf (0.3ms)
|
2857
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
2858
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2859
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2860
|
+
--------------------------------------------------------
|
2861
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2862
|
+
--------------------------------------------------------
|
2863
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:11:02 -0500
|
2864
|
+
Processing by HomeController#index as PDF
|
2865
|
+
Sent data contents.pdf (0.2ms)
|
2866
|
+
Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms)
|
2867
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2868
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2869
|
+
----------------------------------------------------
|
2870
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2871
|
+
----------------------------------------------------
|
2872
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:11:17 -0500
|
2873
|
+
Processing by HomeController#pdf_layout as PDF
|
2874
|
+
Rendered home/pdf_layout.pdf.pdfcraft (44.4ms)
|
2875
|
+
Rendered text template (0.0ms)
|
2876
|
+
Sent data contents.pdf (1.0ms)
|
2877
|
+
Completed 200 OK in 50ms (Views: 49.8ms | ActiveRecord: 0.0ms)
|
2878
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2879
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2880
|
+
---------------------------------------------------------------
|
2881
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2882
|
+
---------------------------------------------------------------
|
2883
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:11:17 -0500
|
2884
|
+
Processing by HomeController#another as PDF
|
2885
|
+
Sent data contents.pdf (0.3ms)
|
2886
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
2887
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2888
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2889
|
+
-------------------------------------------------------
|
2890
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2891
|
+
-------------------------------------------------------
|
2892
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:11:17 -0500
|
2893
|
+
Processing by HomeController#helpers as PDF
|
2894
|
+
Sent data contents.pdf (0.3ms)
|
2895
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
2896
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2897
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2898
|
+
-----------------------------------------------------
|
2899
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2900
|
+
-----------------------------------------------------
|
2901
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:11:17 -0500
|
2902
|
+
Processing by HomeController#partials as PDF
|
2903
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
2904
|
+
Sent data contents.pdf (0.3ms)
|
2905
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
2906
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2907
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2908
|
+
--------------------------------------------------------
|
2909
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2910
|
+
--------------------------------------------------------
|
2911
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:11:17 -0500
|
2912
|
+
Processing by HomeController#index as PDF
|
2913
|
+
Sent data contents.pdf (0.2ms)
|
2914
|
+
Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms)
|
2915
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2916
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2917
|
+
----------------------------------------------------
|
2918
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2919
|
+
----------------------------------------------------
|
2920
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:11:23 -0500
|
2921
|
+
Processing by HomeController#pdf_layout as PDF
|
2922
|
+
Rendered home/pdf_layout.pdf.pdfcraft (43.8ms)
|
2923
|
+
Rendered text template (0.0ms)
|
2924
|
+
Sent data contents.pdf (1.0ms)
|
2925
|
+
Completed 200 OK in 49ms (Views: 48.9ms | ActiveRecord: 0.0ms)
|
2926
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2927
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2928
|
+
---------------------------------------------------------------
|
2929
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2930
|
+
---------------------------------------------------------------
|
2931
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:11:23 -0500
|
2932
|
+
Processing by HomeController#another as PDF
|
2933
|
+
Sent data contents.pdf (0.3ms)
|
2934
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
2935
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2936
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2937
|
+
-------------------------------------------------------
|
2938
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2939
|
+
-------------------------------------------------------
|
2940
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:11:23 -0500
|
2941
|
+
Processing by HomeController#helpers as PDF
|
2942
|
+
Sent data contents.pdf (0.3ms)
|
2943
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
2944
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2945
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2946
|
+
-----------------------------------------------------
|
2947
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2948
|
+
-----------------------------------------------------
|
2949
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:11:23 -0500
|
2950
|
+
Processing by HomeController#partials as PDF
|
2951
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
2952
|
+
Sent data contents.pdf (0.3ms)
|
2953
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
2954
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2955
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2956
|
+
--------------------------------------------------------
|
2957
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
2958
|
+
--------------------------------------------------------
|
2959
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:11:23 -0500
|
2960
|
+
Processing by HomeController#index as PDF
|
2961
|
+
Sent data contents.pdf (0.3ms)
|
2962
|
+
Completed 200 OK in 20ms (Views: 20.1ms | ActiveRecord: 0.0ms)
|
2963
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2964
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2965
|
+
----------------------------------------------------
|
2966
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
2967
|
+
----------------------------------------------------
|
2968
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:18:12 -0500
|
2969
|
+
Processing by HomeController#pdf_layout as PDF
|
2970
|
+
Rendered home/pdf_layout.pdf.pdfcraft (45.7ms)
|
2971
|
+
Rendered text template (0.0ms)
|
2972
|
+
Sent data contents.pdf (1.0ms)
|
2973
|
+
Completed 200 OK in 51ms (Views: 51.0ms | ActiveRecord: 0.0ms)
|
2974
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2975
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2976
|
+
---------------------------------------------------------------
|
2977
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
2978
|
+
---------------------------------------------------------------
|
2979
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:18:12 -0500
|
2980
|
+
Processing by HomeController#another as PDF
|
2981
|
+
Sent data contents.pdf (0.3ms)
|
2982
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
2983
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2984
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2985
|
+
-------------------------------------------------------
|
2986
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
2987
|
+
-------------------------------------------------------
|
2988
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:18:12 -0500
|
2989
|
+
Processing by HomeController#helpers as PDF
|
2990
|
+
Sent data contents.pdf (0.3ms)
|
2991
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
2992
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2993
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2994
|
+
-----------------------------------------------------
|
2995
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
2996
|
+
-----------------------------------------------------
|
2997
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:18:12 -0500
|
2998
|
+
Processing by HomeController#partials as PDF
|
2999
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.5ms)
|
3000
|
+
Sent data contents.pdf (0.3ms)
|
3001
|
+
Completed 200 OK in 6ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
3002
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3003
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3004
|
+
--------------------------------------------------------
|
3005
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3006
|
+
--------------------------------------------------------
|
3007
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:18:12 -0500
|
3008
|
+
Processing by HomeController#index as PDF
|
3009
|
+
Sent data contents.pdf (0.2ms)
|
3010
|
+
Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
3011
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3012
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3013
|
+
----------------------------------------------------
|
3014
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3015
|
+
----------------------------------------------------
|
3016
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:20:43 -0500
|
3017
|
+
Processing by HomeController#pdf_layout as PDF
|
3018
|
+
Rendered home/pdf_layout.pdf.pdfcraft (45.7ms)
|
3019
|
+
Rendered text template (0.0ms)
|
3020
|
+
Sent data contents.pdf (0.9ms)
|
3021
|
+
Completed 200 OK in 51ms (Views: 50.9ms | ActiveRecord: 0.0ms)
|
3022
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3023
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3024
|
+
---------------------------------------------------------------
|
3025
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3026
|
+
---------------------------------------------------------------
|
3027
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:20:43 -0500
|
3028
|
+
Processing by HomeController#another as PDF
|
3029
|
+
Sent data contents.pdf (0.3ms)
|
3030
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
3031
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3032
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3033
|
+
-------------------------------------------------------
|
3034
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3035
|
+
-------------------------------------------------------
|
3036
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:20:43 -0500
|
3037
|
+
Processing by HomeController#helpers as PDF
|
3038
|
+
Sent data contents.pdf (0.3ms)
|
3039
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
3040
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3041
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3042
|
+
-----------------------------------------------------
|
3043
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3044
|
+
-----------------------------------------------------
|
3045
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:20:43 -0500
|
3046
|
+
Processing by HomeController#partials as PDF
|
3047
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.5ms)
|
3048
|
+
Sent data contents.pdf (0.3ms)
|
3049
|
+
Completed 200 OK in 6ms (Views: 6.4ms | ActiveRecord: 0.0ms)
|
3050
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3051
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3052
|
+
--------------------------------------------------------
|
3053
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3054
|
+
--------------------------------------------------------
|
3055
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:20:43 -0500
|
3056
|
+
Processing by HomeController#index as PDF
|
3057
|
+
Sent data contents.pdf (0.2ms)
|
3058
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
3059
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3060
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3061
|
+
----------------------------------------------------
|
3062
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3063
|
+
----------------------------------------------------
|
3064
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:21:21 -0500
|
3065
|
+
Processing by HomeController#pdf_layout as PDF
|
3066
|
+
Rendered home/pdf_layout.pdf.pdfcraft (46.0ms)
|
3067
|
+
Rendered text template (0.0ms)
|
3068
|
+
Sent data contents.pdf (0.9ms)
|
3069
|
+
Completed 200 OK in 51ms (Views: 51.2ms | ActiveRecord: 0.0ms)
|
3070
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3071
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3072
|
+
---------------------------------------------------------------
|
3073
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3074
|
+
---------------------------------------------------------------
|
3075
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:21:22 -0500
|
3076
|
+
Processing by HomeController#another as PDF
|
3077
|
+
Sent data contents.pdf (0.3ms)
|
3078
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
3079
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3080
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3081
|
+
-------------------------------------------------------
|
3082
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3083
|
+
-------------------------------------------------------
|
3084
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:21:22 -0500
|
3085
|
+
Processing by HomeController#helpers as PDF
|
3086
|
+
Sent data contents.pdf (0.3ms)
|
3087
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
3088
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3089
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3090
|
+
-----------------------------------------------------
|
3091
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3092
|
+
-----------------------------------------------------
|
3093
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:21:22 -0500
|
3094
|
+
Processing by HomeController#partials as PDF
|
3095
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.6ms)
|
3096
|
+
Sent data contents.pdf (0.3ms)
|
3097
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
3098
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3099
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3100
|
+
--------------------------------------------------------
|
3101
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3102
|
+
--------------------------------------------------------
|
3103
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:21:22 -0500
|
3104
|
+
Processing by HomeController#index as PDF
|
3105
|
+
Sent data contents.pdf (0.2ms)
|
3106
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
3107
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3108
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3109
|
+
----------------------------------------------------
|
3110
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3111
|
+
----------------------------------------------------
|
3112
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:29:40 -0500
|
3113
|
+
Processing by HomeController#pdf_layout as PDF
|
3114
|
+
Rendered home/pdf_layout.pdf.pdfcraft (59.7ms)
|
3115
|
+
Rendered text template (0.0ms)
|
3116
|
+
Sent data contents.pdf (1.0ms)
|
3117
|
+
Completed 200 OK in 65ms (Views: 65.0ms | ActiveRecord: 0.0ms)
|
3118
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3119
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3120
|
+
---------------------------------------------------------------
|
3121
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3122
|
+
---------------------------------------------------------------
|
3123
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:29:40 -0500
|
3124
|
+
Processing by HomeController#another as PDF
|
3125
|
+
Sent data contents.pdf (0.4ms)
|
3126
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
3127
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3128
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3129
|
+
-------------------------------------------------------
|
3130
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3131
|
+
-------------------------------------------------------
|
3132
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:29:40 -0500
|
3133
|
+
Processing by HomeController#helpers as PDF
|
3134
|
+
Sent data contents.pdf (0.3ms)
|
3135
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
3136
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3137
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3138
|
+
-----------------------------------------------------
|
3139
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3140
|
+
-----------------------------------------------------
|
3141
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:29:40 -0500
|
3142
|
+
Processing by HomeController#partials as PDF
|
3143
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.4ms)
|
3144
|
+
Sent data contents.pdf (0.3ms)
|
3145
|
+
Completed 200 OK in 6ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
3146
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3147
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3148
|
+
--------------------------------------------------------
|
3149
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3150
|
+
--------------------------------------------------------
|
3151
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:29:40 -0500
|
3152
|
+
Processing by HomeController#index as PDF
|
3153
|
+
Sent data contents.pdf (0.2ms)
|
3154
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
3155
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3156
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
3157
|
+
----------------------------------------------------
|
3158
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3159
|
+
----------------------------------------------------
|
3160
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:29:52 -0500
|
3161
|
+
Processing by HomeController#pdf_layout as PDF
|
3162
|
+
Rendered home/pdf_layout.pdf.pdfcraft (44.3ms)
|
3163
|
+
Rendered text template (0.0ms)
|
3164
|
+
Sent data contents.pdf (0.9ms)
|
3165
|
+
Completed 200 OK in 50ms (Views: 49.5ms | ActiveRecord: 0.0ms)
|
3166
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3167
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3168
|
+
---------------------------------------------------------------
|
3169
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3170
|
+
---------------------------------------------------------------
|
3171
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:29:52 -0500
|
3172
|
+
Processing by HomeController#another as PDF
|
3173
|
+
Sent data contents.pdf (0.3ms)
|
3174
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
3175
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3176
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3177
|
+
-------------------------------------------------------
|
3178
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3179
|
+
-------------------------------------------------------
|
3180
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:29:52 -0500
|
3181
|
+
Processing by HomeController#helpers as PDF
|
3182
|
+
Sent data contents.pdf (0.3ms)
|
3183
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
3184
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3185
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3186
|
+
-----------------------------------------------------
|
3187
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3188
|
+
-----------------------------------------------------
|
3189
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:29:52 -0500
|
3190
|
+
Processing by HomeController#partials as PDF
|
3191
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.6ms)
|
3192
|
+
Sent data contents.pdf (0.3ms)
|
3193
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
3194
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3195
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3196
|
+
--------------------------------------------------------
|
3197
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3198
|
+
--------------------------------------------------------
|
3199
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:29:52 -0500
|
3200
|
+
Processing by HomeController#index as PDF
|
3201
|
+
Sent data contents.pdf (0.3ms)
|
3202
|
+
Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.0ms)
|
3203
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3204
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3205
|
+
----------------------------------------------------
|
3206
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3207
|
+
----------------------------------------------------
|
3208
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:30:12 -0500
|
3209
|
+
Processing by HomeController#pdf_layout as PDF
|
3210
|
+
Rendered home/pdf_layout.pdf.pdfcraft (44.7ms)
|
3211
|
+
Rendered text template (0.0ms)
|
3212
|
+
Sent data contents.pdf (0.9ms)
|
3213
|
+
Completed 200 OK in 50ms (Views: 49.9ms | ActiveRecord: 0.0ms)
|
3214
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3215
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3216
|
+
---------------------------------------------------------------
|
3217
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3218
|
+
---------------------------------------------------------------
|
3219
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:30:12 -0500
|
3220
|
+
Processing by HomeController#another as PDF
|
3221
|
+
Sent data contents.pdf (0.3ms)
|
3222
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
3223
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3224
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3225
|
+
-------------------------------------------------------
|
3226
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3227
|
+
-------------------------------------------------------
|
3228
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:30:12 -0500
|
3229
|
+
Processing by HomeController#helpers as PDF
|
3230
|
+
Sent data contents.pdf (0.3ms)
|
3231
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
3232
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3233
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3234
|
+
-----------------------------------------------------
|
3235
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3236
|
+
-----------------------------------------------------
|
3237
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:30:12 -0500
|
3238
|
+
Processing by HomeController#partials as PDF
|
3239
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
3240
|
+
Sent data contents.pdf (0.3ms)
|
3241
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
3242
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3243
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3244
|
+
--------------------------------------------------------
|
3245
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3246
|
+
--------------------------------------------------------
|
3247
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:30:12 -0500
|
3248
|
+
Processing by HomeController#index as PDF
|
3249
|
+
Sent data contents.pdf (0.2ms)
|
3250
|
+
Completed 200 OK in 20ms (Views: 20.1ms | ActiveRecord: 0.0ms)
|
3251
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3252
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3253
|
+
----------------------------------------------------
|
3254
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3255
|
+
----------------------------------------------------
|
3256
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:30:24 -0500
|
3257
|
+
Processing by HomeController#pdf_layout as PDF
|
3258
|
+
Rendered home/pdf_layout.pdf.pdfcraft (45.4ms)
|
3259
|
+
Rendered text template (0.0ms)
|
3260
|
+
Sent data contents.pdf (0.9ms)
|
3261
|
+
Completed 200 OK in 51ms (Views: 50.6ms | ActiveRecord: 0.0ms)
|
3262
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3263
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3264
|
+
---------------------------------------------------------------
|
3265
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3266
|
+
---------------------------------------------------------------
|
3267
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:30:24 -0500
|
3268
|
+
Processing by HomeController#another as PDF
|
3269
|
+
Sent data contents.pdf (0.3ms)
|
3270
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
3271
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3272
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3273
|
+
-------------------------------------------------------
|
3274
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3275
|
+
-------------------------------------------------------
|
3276
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:30:24 -0500
|
3277
|
+
Processing by HomeController#helpers as PDF
|
3278
|
+
Sent data contents.pdf (0.3ms)
|
3279
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
3280
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3281
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3282
|
+
-----------------------------------------------------
|
3283
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3284
|
+
-----------------------------------------------------
|
3285
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:30:24 -0500
|
3286
|
+
Processing by HomeController#partials as PDF
|
3287
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
3288
|
+
Sent data contents.pdf (0.3ms)
|
3289
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
3290
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3291
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3292
|
+
--------------------------------------------------------
|
3293
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3294
|
+
--------------------------------------------------------
|
3295
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:30:24 -0500
|
3296
|
+
Processing by HomeController#index as PDF
|
3297
|
+
Sent data contents.pdf (0.2ms)
|
3298
|
+
Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms)
|
3299
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3300
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3301
|
+
----------------------------------------------------
|
3302
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3303
|
+
----------------------------------------------------
|
3304
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:30:44 -0500
|
3305
|
+
Processing by HomeController#pdf_layout as PDF
|
3306
|
+
Rendered home/pdf_layout.pdf.pdfcraft (44.2ms)
|
3307
|
+
Rendered text template (0.0ms)
|
3308
|
+
Sent data contents.pdf (0.9ms)
|
3309
|
+
Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.0ms)
|
3310
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3311
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3312
|
+
---------------------------------------------------------------
|
3313
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3314
|
+
---------------------------------------------------------------
|
3315
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:30:44 -0500
|
3316
|
+
Processing by HomeController#another as PDF
|
3317
|
+
Sent data contents.pdf (0.3ms)
|
3318
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
3319
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3320
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3321
|
+
-------------------------------------------------------
|
3322
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3323
|
+
-------------------------------------------------------
|
3324
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:30:44 -0500
|
3325
|
+
Processing by HomeController#helpers as PDF
|
3326
|
+
Sent data contents.pdf (0.3ms)
|
3327
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
3328
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3329
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3330
|
+
-----------------------------------------------------
|
3331
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3332
|
+
-----------------------------------------------------
|
3333
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:30:44 -0500
|
3334
|
+
Processing by HomeController#partials as PDF
|
3335
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
3336
|
+
Sent data contents.pdf (0.3ms)
|
3337
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
3338
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3339
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3340
|
+
--------------------------------------------------------
|
3341
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3342
|
+
--------------------------------------------------------
|
3343
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:30:44 -0500
|
3344
|
+
Processing by HomeController#index as PDF
|
3345
|
+
Sent data contents.pdf (0.2ms)
|
3346
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
3347
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3348
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3349
|
+
----------------------------------------------------
|
3350
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3351
|
+
----------------------------------------------------
|
3352
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 21:31:58 -0500
|
3353
|
+
Processing by HomeController#pdf_layout as PDF
|
3354
|
+
Rendered home/pdf_layout.pdf.pdfcraft (2.6ms)
|
3355
|
+
Completed 500 Internal Server Error in 8ms
|
3356
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3357
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3358
|
+
---------------------------------------------------------------
|
3359
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3360
|
+
---------------------------------------------------------------
|
3361
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 21:31:58 -0500
|
3362
|
+
Processing by HomeController#another as PDF
|
3363
|
+
Sent data contents.pdf (0.8ms)
|
3364
|
+
Completed 200 OK in 51ms (Views: 50.8ms | ActiveRecord: 0.0ms)
|
3365
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3366
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3367
|
+
-------------------------------------------------------
|
3368
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3369
|
+
-------------------------------------------------------
|
3370
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 21:31:58 -0500
|
3371
|
+
Processing by HomeController#helpers as PDF
|
3372
|
+
Sent data contents.pdf (0.3ms)
|
3373
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
3374
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3375
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3376
|
+
-----------------------------------------------------
|
3377
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3378
|
+
-----------------------------------------------------
|
3379
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 21:31:58 -0500
|
3380
|
+
Processing by HomeController#partials as PDF
|
3381
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
3382
|
+
Sent data contents.pdf (0.3ms)
|
3383
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
3384
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3385
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3386
|
+
--------------------------------------------------------
|
3387
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3388
|
+
--------------------------------------------------------
|
3389
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 21:31:58 -0500
|
3390
|
+
Processing by HomeController#index as PDF
|
3391
|
+
Sent data contents.pdf (0.3ms)
|
3392
|
+
Completed 200 OK in 26ms (Views: 25.9ms | ActiveRecord: 0.0ms)
|
3393
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3394
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3395
|
+
----------------------------------------------------
|
3396
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3397
|
+
----------------------------------------------------
|
3398
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 22:02:58 -0500
|
3399
|
+
Processing by HomeController#pdf_layout as PDF
|
3400
|
+
Rendered home/pdf_layout.pdf.pdfcraft (1.2ms)
|
3401
|
+
Completed 500 Internal Server Error in 6ms
|
3402
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3403
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3404
|
+
---------------------------------------------------------------
|
3405
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3406
|
+
---------------------------------------------------------------
|
3407
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 22:02:58 -0500
|
3408
|
+
Processing by HomeController#another as PDF
|
3409
|
+
Completed 500 Internal Server Error in 1ms
|
3410
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3411
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3412
|
+
-------------------------------------------------------
|
3413
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3414
|
+
-------------------------------------------------------
|
3415
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 22:02:58 -0500
|
3416
|
+
Processing by HomeController#helpers as PDF
|
3417
|
+
Completed 500 Internal Server Error in 1ms
|
3418
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3419
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3420
|
+
-----------------------------------------------------
|
3421
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3422
|
+
-----------------------------------------------------
|
3423
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 22:02:58 -0500
|
3424
|
+
Processing by HomeController#partials as PDF
|
3425
|
+
Completed 500 Internal Server Error in 1ms
|
3426
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3427
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3428
|
+
--------------------------------------------------------
|
3429
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3430
|
+
--------------------------------------------------------
|
3431
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 22:02:58 -0500
|
3432
|
+
Processing by HomeController#index as PDF
|
3433
|
+
Completed 500 Internal Server Error in 1ms
|
3434
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3435
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3436
|
+
----------------------------------------------------
|
3437
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3438
|
+
----------------------------------------------------
|
3439
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 22:03:54 -0500
|
3440
|
+
Processing by HomeController#pdf_layout as PDF
|
3441
|
+
Rendered home/pdf_layout.pdf.pdfcraft (2.9ms)
|
3442
|
+
Completed 500 Internal Server Error in 7ms
|
3443
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3444
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3445
|
+
---------------------------------------------------------------
|
3446
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3447
|
+
---------------------------------------------------------------
|
3448
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 22:03:54 -0500
|
3449
|
+
Processing by HomeController#another as PDF
|
3450
|
+
Sent data contents.pdf (0.9ms)
|
3451
|
+
Completed 200 OK in 48ms (Views: 47.7ms | ActiveRecord: 0.0ms)
|
3452
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3453
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3454
|
+
-------------------------------------------------------
|
3455
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3456
|
+
-------------------------------------------------------
|
3457
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 22:03:55 -0500
|
3458
|
+
Processing by HomeController#helpers as PDF
|
3459
|
+
Sent data contents.pdf (0.5ms)
|
3460
|
+
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
3461
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3462
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3463
|
+
-----------------------------------------------------
|
3464
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3465
|
+
-----------------------------------------------------
|
3466
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 22:03:55 -0500
|
3467
|
+
Processing by HomeController#partials as PDF
|
3468
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.6ms)
|
3469
|
+
Sent data contents.pdf (0.3ms)
|
3470
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
3471
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3472
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3473
|
+
--------------------------------------------------------
|
3474
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3475
|
+
--------------------------------------------------------
|
3476
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 22:03:55 -0500
|
3477
|
+
Processing by HomeController#index as PDF
|
3478
|
+
Sent data contents.pdf (0.2ms)
|
3479
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
3480
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3481
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3482
|
+
----------------------------------------------------
|
3483
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3484
|
+
----------------------------------------------------
|
3485
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 22:04:32 -0500
|
3486
|
+
Processing by HomeController#pdf_layout as PDF
|
3487
|
+
Rendered home/pdf_layout.pdf.pdfcraft (3.0ms)
|
3488
|
+
Completed 500 Internal Server Error in 7ms
|
3489
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3490
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3491
|
+
---------------------------------------------------------------
|
3492
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3493
|
+
---------------------------------------------------------------
|
3494
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 22:04:32 -0500
|
3495
|
+
Processing by HomeController#another as PDF
|
3496
|
+
Sent data contents.pdf (0.9ms)
|
3497
|
+
Completed 200 OK in 48ms (Views: 48.1ms | ActiveRecord: 0.0ms)
|
3498
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3499
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3500
|
+
-------------------------------------------------------
|
3501
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3502
|
+
-------------------------------------------------------
|
3503
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 22:04:32 -0500
|
3504
|
+
Processing by HomeController#helpers as PDF
|
3505
|
+
Sent data contents.pdf (0.3ms)
|
3506
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
3507
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3508
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3509
|
+
-----------------------------------------------------
|
3510
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3511
|
+
-----------------------------------------------------
|
3512
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 22:04:32 -0500
|
3513
|
+
Processing by HomeController#partials as PDF
|
3514
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.6ms)
|
3515
|
+
Sent data contents.pdf (0.3ms)
|
3516
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
3517
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3518
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3519
|
+
--------------------------------------------------------
|
3520
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3521
|
+
--------------------------------------------------------
|
3522
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 22:04:32 -0500
|
3523
|
+
Processing by HomeController#index as PDF
|
3524
|
+
Sent data contents.pdf (0.2ms)
|
3525
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
3526
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3527
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3528
|
+
----------------------------------------------------
|
3529
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3530
|
+
----------------------------------------------------
|
3531
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 22:05:23 -0500
|
3532
|
+
Processing by HomeController#pdf_layout as PDF
|
3533
|
+
Rendered home/pdf_layout.pdf.pdfcraft (47.1ms)
|
3534
|
+
Rendered text template (0.0ms)
|
3535
|
+
Sent data contents.pdf (1.0ms)
|
3536
|
+
Completed 200 OK in 53ms (Views: 52.5ms | ActiveRecord: 0.0ms)
|
3537
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3538
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3539
|
+
---------------------------------------------------------------
|
3540
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3541
|
+
---------------------------------------------------------------
|
3542
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 22:05:23 -0500
|
3543
|
+
Processing by HomeController#another as PDF
|
3544
|
+
Sent data contents.pdf (0.3ms)
|
3545
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
3546
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3547
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3548
|
+
-------------------------------------------------------
|
3549
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3550
|
+
-------------------------------------------------------
|
3551
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 22:05:23 -0500
|
3552
|
+
Processing by HomeController#helpers as PDF
|
3553
|
+
Sent data contents.pdf (0.3ms)
|
3554
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
3555
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3556
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3557
|
+
-----------------------------------------------------
|
3558
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3559
|
+
-----------------------------------------------------
|
3560
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 22:05:23 -0500
|
3561
|
+
Processing by HomeController#partials as PDF
|
3562
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.9ms)
|
3563
|
+
Sent data contents.pdf (0.4ms)
|
3564
|
+
Completed 200 OK in 7ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
3565
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3566
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3567
|
+
--------------------------------------------------------
|
3568
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3569
|
+
--------------------------------------------------------
|
3570
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 22:05:23 -0500
|
3571
|
+
Processing by HomeController#index as PDF
|
3572
|
+
Sent data contents.pdf (0.2ms)
|
3573
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
3574
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3575
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3576
|
+
----------------------------------------------------
|
3577
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3578
|
+
----------------------------------------------------
|
3579
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 22:06:09 -0500
|
3580
|
+
Processing by HomeController#pdf_layout as PDF
|
3581
|
+
Rendered home/pdf_layout.pdf.pdfcraft (45.8ms)
|
3582
|
+
Rendered text template (0.0ms)
|
3583
|
+
Sent data contents.pdf (0.9ms)
|
3584
|
+
Completed 200 OK in 51ms (Views: 51.0ms | ActiveRecord: 0.0ms)
|
3585
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3586
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3587
|
+
---------------------------------------------------------------
|
3588
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3589
|
+
---------------------------------------------------------------
|
3590
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 22:06:10 -0500
|
3591
|
+
Processing by HomeController#another as PDF
|
3592
|
+
Sent data contents.pdf (0.3ms)
|
3593
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
3594
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3595
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3596
|
+
-------------------------------------------------------
|
3597
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3598
|
+
-------------------------------------------------------
|
3599
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 22:06:10 -0500
|
3600
|
+
Processing by HomeController#helpers as PDF
|
3601
|
+
Sent data contents.pdf (0.3ms)
|
3602
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
3603
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3604
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3605
|
+
-----------------------------------------------------
|
3606
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3607
|
+
-----------------------------------------------------
|
3608
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 22:06:10 -0500
|
3609
|
+
Processing by HomeController#partials as PDF
|
3610
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
3611
|
+
Sent data contents.pdf (0.3ms)
|
3612
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
3613
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3614
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3615
|
+
--------------------------------------------------------
|
3616
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3617
|
+
--------------------------------------------------------
|
3618
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 22:06:10 -0500
|
3619
|
+
Processing by HomeController#index as PDF
|
3620
|
+
Sent data contents.pdf (0.3ms)
|
3621
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
3622
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3623
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3624
|
+
----------------------------------------------------
|
3625
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3626
|
+
----------------------------------------------------
|
3627
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 22:06:43 -0500
|
3628
|
+
Processing by HomeController#pdf_layout as PDF
|
3629
|
+
Rendered home/pdf_layout.pdf.pdfcraft (43.9ms)
|
3630
|
+
Rendered text template (0.0ms)
|
3631
|
+
Sent data contents.pdf (0.9ms)
|
3632
|
+
Completed 200 OK in 49ms (Views: 49.1ms | ActiveRecord: 0.0ms)
|
3633
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3634
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3635
|
+
---------------------------------------------------------------
|
3636
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3637
|
+
---------------------------------------------------------------
|
3638
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 22:06:43 -0500
|
3639
|
+
Processing by HomeController#another as PDF
|
3640
|
+
Sent data contents.pdf (0.3ms)
|
3641
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
3642
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3643
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3644
|
+
-------------------------------------------------------
|
3645
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3646
|
+
-------------------------------------------------------
|
3647
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 22:06:43 -0500
|
3648
|
+
Processing by HomeController#helpers as PDF
|
3649
|
+
Sent data contents.pdf (0.3ms)
|
3650
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
3651
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3652
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3653
|
+
-----------------------------------------------------
|
3654
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3655
|
+
-----------------------------------------------------
|
3656
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 22:06:43 -0500
|
3657
|
+
Processing by HomeController#partials as PDF
|
3658
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.8ms)
|
3659
|
+
Sent data contents.pdf (0.3ms)
|
3660
|
+
Completed 200 OK in 7ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
3661
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3662
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3663
|
+
--------------------------------------------------------
|
3664
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3665
|
+
--------------------------------------------------------
|
3666
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 22:06:43 -0500
|
3667
|
+
Processing by HomeController#index as PDF
|
3668
|
+
Sent data contents.pdf (0.3ms)
|
3669
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
3670
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3671
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3672
|
+
----------------------------------------------------
|
3673
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3674
|
+
----------------------------------------------------
|
3675
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 22:08:02 -0500
|
3676
|
+
Processing by HomeController#pdf_layout as PDF
|
3677
|
+
Rendered home/pdf_layout.pdf.pdfcraft (44.0ms)
|
3678
|
+
Rendered text template (0.0ms)
|
3679
|
+
Sent data contents.pdf (0.9ms)
|
3680
|
+
Completed 200 OK in 49ms (Views: 49.1ms | ActiveRecord: 0.0ms)
|
3681
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3682
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3683
|
+
---------------------------------------------------------------
|
3684
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3685
|
+
---------------------------------------------------------------
|
3686
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 22:08:02 -0500
|
3687
|
+
Processing by HomeController#another as PDF
|
3688
|
+
Sent data contents.pdf (0.3ms)
|
3689
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
3690
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3691
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3692
|
+
-------------------------------------------------------
|
3693
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3694
|
+
-------------------------------------------------------
|
3695
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 22:08:02 -0500
|
3696
|
+
Processing by HomeController#helpers as PDF
|
3697
|
+
Sent data contents.pdf (0.3ms)
|
3698
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
3699
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3700
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3701
|
+
-----------------------------------------------------
|
3702
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3703
|
+
-----------------------------------------------------
|
3704
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 22:08:02 -0500
|
3705
|
+
Processing by HomeController#partials as PDF
|
3706
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.8ms)
|
3707
|
+
Sent data contents.pdf (0.3ms)
|
3708
|
+
Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
|
3709
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3710
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3711
|
+
--------------------------------------------------------
|
3712
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3713
|
+
--------------------------------------------------------
|
3714
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 22:08:02 -0500
|
3715
|
+
Processing by HomeController#index as PDF
|
3716
|
+
Sent data contents.pdf (0.2ms)
|
3717
|
+
Completed 200 OK in 21ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
3718
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3719
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3720
|
+
----------------------------------------------------
|
3721
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3722
|
+
----------------------------------------------------
|
3723
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 22:08:25 -0500
|
3724
|
+
Processing by HomeController#pdf_layout as PDF
|
3725
|
+
Rendered home/pdf_layout.pdf.pdfcraft (46.7ms)
|
3726
|
+
Rendered text template (0.0ms)
|
3727
|
+
Sent data contents.pdf (1.0ms)
|
3728
|
+
Completed 200 OK in 52ms (Views: 52.1ms | ActiveRecord: 0.0ms)
|
3729
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3730
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3731
|
+
---------------------------------------------------------------
|
3732
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3733
|
+
---------------------------------------------------------------
|
3734
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 22:08:25 -0500
|
3735
|
+
Processing by HomeController#another as PDF
|
3736
|
+
Sent data contents.pdf (0.3ms)
|
3737
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
3738
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3739
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3740
|
+
-------------------------------------------------------
|
3741
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3742
|
+
-------------------------------------------------------
|
3743
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 22:08:25 -0500
|
3744
|
+
Processing by HomeController#helpers as PDF
|
3745
|
+
Sent data contents.pdf (0.3ms)
|
3746
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
3747
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3748
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3749
|
+
-----------------------------------------------------
|
3750
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3751
|
+
-----------------------------------------------------
|
3752
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 22:08:25 -0500
|
3753
|
+
Processing by HomeController#partials as PDF
|
3754
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.8ms)
|
3755
|
+
Sent data contents.pdf (0.3ms)
|
3756
|
+
Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
3757
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3758
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3759
|
+
--------------------------------------------------------
|
3760
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3761
|
+
--------------------------------------------------------
|
3762
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 22:08:25 -0500
|
3763
|
+
Processing by HomeController#index as PDF
|
3764
|
+
Sent data contents.pdf (0.3ms)
|
3765
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
3766
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3767
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3768
|
+
----------------------------------------------------
|
3769
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3770
|
+
----------------------------------------------------
|
3771
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 22:08:39 -0500
|
3772
|
+
Processing by HomeController#pdf_layout as PDF
|
3773
|
+
Rendered home/pdf_layout.pdf.pdfcraft (46.2ms)
|
3774
|
+
Rendered text template (0.0ms)
|
3775
|
+
Sent data contents.pdf (0.9ms)
|
3776
|
+
Completed 200 OK in 52ms (Views: 51.4ms | ActiveRecord: 0.0ms)
|
3777
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3778
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3779
|
+
---------------------------------------------------------------
|
3780
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3781
|
+
---------------------------------------------------------------
|
3782
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 22:08:39 -0500
|
3783
|
+
Processing by HomeController#another as PDF
|
3784
|
+
Sent data contents.pdf (0.3ms)
|
3785
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
3786
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3787
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3788
|
+
-------------------------------------------------------
|
3789
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3790
|
+
-------------------------------------------------------
|
3791
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 22:08:39 -0500
|
3792
|
+
Processing by HomeController#helpers as PDF
|
3793
|
+
Sent data contents.pdf (0.3ms)
|
3794
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
3795
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3796
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3797
|
+
-----------------------------------------------------
|
3798
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3799
|
+
-----------------------------------------------------
|
3800
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 22:08:39 -0500
|
3801
|
+
Processing by HomeController#partials as PDF
|
3802
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
3803
|
+
Sent data contents.pdf (0.4ms)
|
3804
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
3805
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3806
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3807
|
+
--------------------------------------------------------
|
3808
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3809
|
+
--------------------------------------------------------
|
3810
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 22:08:39 -0500
|
3811
|
+
Processing by HomeController#index as PDF
|
3812
|
+
Sent data contents.pdf (0.2ms)
|
3813
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
3814
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3815
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3816
|
+
----------------------------------------------------
|
3817
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3818
|
+
----------------------------------------------------
|
3819
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 22:08:50 -0500
|
3820
|
+
Processing by HomeController#pdf_layout as PDF
|
3821
|
+
Rendered home/pdf_layout.pdf.pdfcraft (45.0ms)
|
3822
|
+
Rendered text template (0.0ms)
|
3823
|
+
Sent data contents.pdf (0.9ms)
|
3824
|
+
Completed 200 OK in 51ms (Views: 50.3ms | ActiveRecord: 0.0ms)
|
3825
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3826
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3827
|
+
---------------------------------------------------------------
|
3828
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3829
|
+
---------------------------------------------------------------
|
3830
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 22:08:50 -0500
|
3831
|
+
Processing by HomeController#another as PDF
|
3832
|
+
Sent data contents.pdf (0.3ms)
|
3833
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
3834
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3835
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3836
|
+
-------------------------------------------------------
|
3837
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3838
|
+
-------------------------------------------------------
|
3839
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 22:08:50 -0500
|
3840
|
+
Processing by HomeController#helpers as PDF
|
3841
|
+
Sent data contents.pdf (0.3ms)
|
3842
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
3843
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3844
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3845
|
+
-----------------------------------------------------
|
3846
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3847
|
+
-----------------------------------------------------
|
3848
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 22:08:50 -0500
|
3849
|
+
Processing by HomeController#partials as PDF
|
3850
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.7ms)
|
3851
|
+
Sent data contents.pdf (0.3ms)
|
3852
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
3853
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3854
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3855
|
+
--------------------------------------------------------
|
3856
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3857
|
+
--------------------------------------------------------
|
3858
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 22:08:50 -0500
|
3859
|
+
Processing by HomeController#index as PDF
|
3860
|
+
Sent data contents.pdf (0.2ms)
|
3861
|
+
Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.0ms)
|
3862
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3863
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3864
|
+
----------------------------------------------------
|
3865
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3866
|
+
----------------------------------------------------
|
3867
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 22:10:09 -0500
|
3868
|
+
Processing by HomeController#pdf_layout as PDF
|
3869
|
+
Rendered home/pdf_layout.pdf.pdfcraft (44.2ms)
|
3870
|
+
Rendered text template (0.0ms)
|
3871
|
+
Sent data contents.pdf (1.0ms)
|
3872
|
+
Completed 200 OK in 50ms (Views: 49.4ms | ActiveRecord: 0.0ms)
|
3873
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3874
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3875
|
+
---------------------------------------------------------------
|
3876
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3877
|
+
---------------------------------------------------------------
|
3878
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 22:10:09 -0500
|
3879
|
+
Processing by HomeController#another as PDF
|
3880
|
+
Sent data contents.pdf (0.3ms)
|
3881
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
3882
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3883
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3884
|
+
-------------------------------------------------------
|
3885
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3886
|
+
-------------------------------------------------------
|
3887
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 22:10:09 -0500
|
3888
|
+
Processing by HomeController#helpers as PDF
|
3889
|
+
Sent data contents.pdf (0.3ms)
|
3890
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
3891
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3892
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3893
|
+
-----------------------------------------------------
|
3894
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3895
|
+
-----------------------------------------------------
|
3896
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 22:10:09 -0500
|
3897
|
+
Processing by HomeController#partials as PDF
|
3898
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.6ms)
|
3899
|
+
Sent data contents.pdf (0.3ms)
|
3900
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
3901
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3902
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3903
|
+
--------------------------------------------------------
|
3904
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3905
|
+
--------------------------------------------------------
|
3906
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 22:10:09 -0500
|
3907
|
+
Processing by HomeController#index as PDF
|
3908
|
+
Sent data contents.pdf (0.2ms)
|
3909
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
3910
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3911
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3912
|
+
----------------------------------------------------
|
3913
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3914
|
+
----------------------------------------------------
|
3915
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 22:10:24 -0500
|
3916
|
+
Processing by HomeController#pdf_layout as PDF
|
3917
|
+
Rendered home/pdf_layout.pdf.pdfcraft (43.8ms)
|
3918
|
+
Rendered text template (0.0ms)
|
3919
|
+
Sent data contents.pdf (1.0ms)
|
3920
|
+
Completed 200 OK in 49ms (Views: 49.0ms | ActiveRecord: 0.0ms)
|
3921
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3922
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3923
|
+
---------------------------------------------------------------
|
3924
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3925
|
+
---------------------------------------------------------------
|
3926
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 22:10:24 -0500
|
3927
|
+
Processing by HomeController#another as PDF
|
3928
|
+
Sent data contents.pdf (0.3ms)
|
3929
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
3930
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3931
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3932
|
+
-------------------------------------------------------
|
3933
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3934
|
+
-------------------------------------------------------
|
3935
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 22:10:24 -0500
|
3936
|
+
Processing by HomeController#helpers as PDF
|
3937
|
+
Sent data contents.pdf (0.3ms)
|
3938
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
3939
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3940
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3941
|
+
-----------------------------------------------------
|
3942
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3943
|
+
-----------------------------------------------------
|
3944
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 22:10:25 -0500
|
3945
|
+
Processing by HomeController#partials as PDF
|
3946
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.6ms)
|
3947
|
+
Sent data contents.pdf (0.3ms)
|
3948
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
3949
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3950
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3951
|
+
--------------------------------------------------------
|
3952
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
3953
|
+
--------------------------------------------------------
|
3954
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 22:10:25 -0500
|
3955
|
+
Processing by HomeController#index as PDF
|
3956
|
+
Sent data contents.pdf (0.2ms)
|
3957
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
3958
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3959
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3960
|
+
----------------------------------------------------
|
3961
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
3962
|
+
----------------------------------------------------
|
3963
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 22:11:25 -0500
|
3964
|
+
Processing by HomeController#pdf_layout as PDF
|
3965
|
+
Rendered home/pdf_layout.pdf.pdfcraft (46.1ms)
|
3966
|
+
Rendered text template (0.0ms)
|
3967
|
+
Sent data contents.pdf (0.9ms)
|
3968
|
+
Completed 200 OK in 52ms (Views: 51.2ms | ActiveRecord: 0.0ms)
|
3969
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3970
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3971
|
+
---------------------------------------------------------------
|
3972
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
3973
|
+
---------------------------------------------------------------
|
3974
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 22:11:25 -0500
|
3975
|
+
Processing by HomeController#another as PDF
|
3976
|
+
Sent data contents.pdf (0.3ms)
|
3977
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
3978
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3979
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3980
|
+
-------------------------------------------------------
|
3981
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
3982
|
+
-------------------------------------------------------
|
3983
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 22:11:25 -0500
|
3984
|
+
Processing by HomeController#helpers as PDF
|
3985
|
+
Sent data contents.pdf (0.3ms)
|
3986
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
3987
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3988
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3989
|
+
-----------------------------------------------------
|
3990
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
3991
|
+
-----------------------------------------------------
|
3992
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 22:11:25 -0500
|
3993
|
+
Processing by HomeController#partials as PDF
|
3994
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.6ms)
|
3995
|
+
Sent data contents.pdf (0.3ms)
|
3996
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
3997
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3998
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3999
|
+
--------------------------------------------------------
|
4000
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
4001
|
+
--------------------------------------------------------
|
4002
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 22:11:25 -0500
|
4003
|
+
Processing by HomeController#index as PDF
|
4004
|
+
Sent data contents.pdf (0.2ms)
|
4005
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
4006
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4007
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
4008
|
+
----------------------------------------------------
|
4009
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
4010
|
+
----------------------------------------------------
|
4011
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 22:11:49 -0500
|
4012
|
+
Processing by HomeController#pdf_layout as PDF
|
4013
|
+
Rendered home/pdf_layout.pdf.pdfcraft (26.9ms)
|
4014
|
+
Rendered text template (0.0ms)
|
4015
|
+
Sent data contents.pdf (0.9ms)
|
4016
|
+
Completed 200 OK in 32ms (Views: 32.1ms | ActiveRecord: 0.0ms)
|
4017
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4018
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4019
|
+
---------------------------------------------------------------
|
4020
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
4021
|
+
---------------------------------------------------------------
|
4022
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 22:11:49 -0500
|
4023
|
+
Processing by HomeController#another as PDF
|
4024
|
+
Sent data contents.pdf (0.3ms)
|
4025
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
4026
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4027
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4028
|
+
-------------------------------------------------------
|
4029
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
4030
|
+
-------------------------------------------------------
|
4031
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 22:11:49 -0500
|
4032
|
+
Processing by HomeController#helpers as PDF
|
4033
|
+
Sent data contents.pdf (0.3ms)
|
4034
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
4035
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4036
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4037
|
+
-----------------------------------------------------
|
4038
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
4039
|
+
-----------------------------------------------------
|
4040
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 22:11:49 -0500
|
4041
|
+
Processing by HomeController#partials as PDF
|
4042
|
+
Rendered home/_the_partial.pdf.pdfcraft (2.3ms)
|
4043
|
+
Sent data contents.pdf (0.9ms)
|
4044
|
+
Completed 200 OK in 9ms (Views: 9.3ms | ActiveRecord: 0.0ms)
|
4045
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4046
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4047
|
+
--------------------------------------------------------
|
4048
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
4049
|
+
--------------------------------------------------------
|
4050
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 22:11:49 -0500
|
4051
|
+
Processing by HomeController#index as PDF
|
4052
|
+
Sent data contents.pdf (0.2ms)
|
4053
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
4054
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4055
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4056
|
+
------------------------
|
4057
|
+
PdfcraftTest: test_truth
|
4058
|
+
------------------------
|
4059
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4060
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
4061
|
+
----------------------------------------------------
|
4062
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
4063
|
+
----------------------------------------------------
|
4064
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2013-12-31 22:11:52 -0500
|
4065
|
+
Processing by HomeController#pdf_layout as PDF
|
4066
|
+
Rendered home/pdf_layout.pdf.pdfcraft (26.7ms)
|
4067
|
+
Rendered text template (0.0ms)
|
4068
|
+
Sent data contents.pdf (0.9ms)
|
4069
|
+
Completed 200 OK in 32ms (Views: 31.7ms | ActiveRecord: 0.0ms)
|
4070
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4071
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4072
|
+
---------------------------------------------------------------
|
4073
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
4074
|
+
---------------------------------------------------------------
|
4075
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2013-12-31 22:11:52 -0500
|
4076
|
+
Processing by HomeController#another as PDF
|
4077
|
+
Sent data contents.pdf (0.3ms)
|
4078
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
4079
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4080
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4081
|
+
-------------------------------------------------------
|
4082
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
4083
|
+
-------------------------------------------------------
|
4084
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2013-12-31 22:11:52 -0500
|
4085
|
+
Processing by HomeController#helpers as PDF
|
4086
|
+
Sent data contents.pdf (0.3ms)
|
4087
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
4088
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4089
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4090
|
+
-----------------------------------------------------
|
4091
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
4092
|
+
-----------------------------------------------------
|
4093
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2013-12-31 22:11:52 -0500
|
4094
|
+
Processing by HomeController#partials as PDF
|
4095
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.5ms)
|
4096
|
+
Sent data contents.pdf (0.3ms)
|
4097
|
+
Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
|
4098
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4099
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4100
|
+
--------------------------------------------------------
|
4101
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
4102
|
+
--------------------------------------------------------
|
4103
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-12-31 22:11:52 -0500
|
4104
|
+
Processing by HomeController#index as PDF
|
4105
|
+
Sent data contents.pdf (0.2ms)
|
4106
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
4107
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4108
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4109
|
+
------------------------
|
4110
|
+
PdfcraftTest: test_truth
|
4111
|
+
------------------------
|
4112
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4113
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
4114
|
+
----------------------------------------------------
|
4115
|
+
PdfRenderingTest: test_pdf_layout_can_be_set_in_view
|
4116
|
+
----------------------------------------------------
|
4117
|
+
Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2014-01-01 11:54:03 -0500
|
4118
|
+
Processing by HomeController#pdf_layout as PDF
|
4119
|
+
Rendered home/pdf_layout.pdf.pdfcraft (26.6ms)
|
4120
|
+
Rendered text template (0.0ms)
|
4121
|
+
Sent data contents.pdf (0.9ms)
|
4122
|
+
Completed 200 OK in 32ms (Views: 32.0ms | ActiveRecord: 0.0ms)
|
4123
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4124
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4125
|
+
---------------------------------------------------------------
|
4126
|
+
PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
|
4127
|
+
---------------------------------------------------------------
|
4128
|
+
Started GET "/another.pdf" for 127.0.0.1 at 2014-01-01 11:54:03 -0500
|
4129
|
+
Processing by HomeController#another as PDF
|
4130
|
+
Sent data contents.pdf (0.3ms)
|
4131
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
4132
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4133
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4134
|
+
-------------------------------------------------------
|
4135
|
+
PdfRenderingTest: test_pdf_rendering_can_access_helpers
|
4136
|
+
-------------------------------------------------------
|
4137
|
+
Started GET "/helpers.pdf" for 127.0.0.1 at 2014-01-01 11:54:03 -0500
|
4138
|
+
Processing by HomeController#helpers as PDF
|
4139
|
+
Sent data contents.pdf (0.3ms)
|
4140
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
4141
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4142
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4143
|
+
-----------------------------------------------------
|
4144
|
+
PdfRenderingTest: test_pdf_rendering_can_use_partials
|
4145
|
+
-----------------------------------------------------
|
4146
|
+
Started GET "/partials.pdf" for 127.0.0.1 at 2014-01-01 11:54:03 -0500
|
4147
|
+
Processing by HomeController#partials as PDF
|
4148
|
+
Rendered home/_the_partial.pdf.pdfcraft (1.8ms)
|
4149
|
+
Sent data contents.pdf (0.3ms)
|
4150
|
+
Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
|
4151
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4152
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4153
|
+
--------------------------------------------------------
|
4154
|
+
PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
|
4155
|
+
--------------------------------------------------------
|
4156
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2014-01-01 11:54:03 -0500
|
4157
|
+
Processing by HomeController#index as PDF
|
4158
|
+
Sent data contents.pdf (0.2ms)
|
4159
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
4160
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4161
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4162
|
+
------------------------
|
4163
|
+
PdfcraftTest: test_truth
|
4164
|
+
------------------------
|
4165
|
+
[1m[35m (0.0ms)[0m rollback transaction
|