latexpdf 0.4.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.
Files changed (74) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +21 -0
  3. data/README.rdoc +34 -0
  4. data/Rakefile +16 -0
  5. data/lib/action_view/template_handlers/tex.rb +26 -0
  6. data/lib/latexpdf/configuration.rb +13 -0
  7. data/lib/latexpdf/errors/latexpdf_error.rb +13 -0
  8. data/lib/latexpdf/pdf_generator.rb +105 -0
  9. data/lib/latexpdf/railtie.rb +9 -0
  10. data/lib/latexpdf/version.rb +3 -0
  11. data/lib/latexpdf.rb +45 -0
  12. data/test/dummy/README.rdoc +28 -0
  13. data/test/dummy/Rakefile +6 -0
  14. data/test/dummy/app/assets/javascripts/application.js +13 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  16. data/test/dummy/app/controllers/application_controller.rb +5 -0
  17. data/test/dummy/app/controllers/tex_controller.rb +7 -0
  18. data/test/dummy/app/helpers/application_helper.rb +2 -0
  19. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  20. data/test/dummy/app/views/tex/example.pdf.tex +4 -0
  21. data/test/dummy/bin/bundle +3 -0
  22. data/test/dummy/bin/rails +4 -0
  23. data/test/dummy/bin/rake +4 -0
  24. data/test/dummy/bin/setup +21 -0
  25. data/test/dummy/config/application.rb +32 -0
  26. data/test/dummy/config/boot.rb +5 -0
  27. data/test/dummy/config/database.yml +25 -0
  28. data/test/dummy/config/environment.rb +5 -0
  29. data/test/dummy/config/environments/development.rb +41 -0
  30. data/test/dummy/config/environments/production.rb +79 -0
  31. data/test/dummy/config/environments/test.rb +42 -0
  32. data/test/dummy/config/initializers/assets.rb +11 -0
  33. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  35. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  36. data/test/dummy/config/initializers/inflections.rb +16 -0
  37. data/test/dummy/config/initializers/mime_types.rb +4 -0
  38. data/test/dummy/config/initializers/session_store.rb +3 -0
  39. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/test/dummy/config/locales/en.yml +23 -0
  41. data/test/dummy/config/routes.rb +3 -0
  42. data/test/dummy/config/secrets.yml +22 -0
  43. data/test/dummy/config.ru +4 -0
  44. data/test/dummy/log/test.log +458 -0
  45. data/test/dummy/public/404.html +67 -0
  46. data/test/dummy/public/422.html +67 -0
  47. data/test/dummy/public/500.html +66 -0
  48. data/test/dummy/public/favicon.ico +0 -0
  49. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5L/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +2 -0
  50. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Al/Al8B-MlRXLmvveOkSiQtTH7Mnx87ww6TKPPkXQkDCfA.cache +1 -0
  51. data/test/dummy/tmp/cache/assets/sprockets/v3.0/El/Elvl8FhrIcCHSvOVJ4mlw98G_x77dIhDO7ncklgb9o8.cache +0 -0
  52. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Eo/EoGXUuweaJggMJEhq_PIGuHGezpQHVeyR5Tnle6g0Zk.cache +0 -0
  53. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Iv/IvDM1j8-H1H6kEjVCsyIW8N2zla-aIp9q_OE9PVZtVw.cache +1 -0
  54. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OH/OHv3xxmOjKcBMS0Y_yTmyfrhpGoi7AbGMBAcCFsH1vg.cache +1 -0
  55. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +2 -0
  56. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ol/OlBX9JIv9SAOmK2t35x1SYDx1sxCXF0yvqpna3WMyH0.cache +1 -0
  57. data/test/dummy/tmp/cache/assets/sprockets/v3.0/TG/TGzz_qJLZNCMGy25pS4Lm-8Vj71mxCyy5TNmGoF9mUk.cache +1 -0
  58. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Yr/YrZ0OIHu42cExs1kqngMA6ShVDKhfGmhyW-E9haNo5Y.cache +1 -0
  59. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gp/gpiWtnqpufka8lRtMznM6Ko0aWJrcH_j8cfZwdYmzNI.cache +1 -0
  60. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hZ/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +2 -0
  61. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jo/jozGBeLU1Q4eVAsw_A_nyY994iqcnwgTZWiFbVsYmBs.cache +0 -0
  62. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pE/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +2 -0
  63. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sU/sU_vk26h2xIJpI3d-zhVgF2iTwOCAFk7zHPYuvqWNk0.cache +0 -0
  64. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sp/sp2aS0gBrj1ZVPgX0e8j11TaSSz3qpMGjtFv6soZ0KM.cache +0 -0
  65. data/test/integration/rendering_test.rb +11 -0
  66. data/test/latexpdf/configuration_test.rb +16 -0
  67. data/test/latexpdf/latexpdf_error_test.rb +10 -0
  68. data/test/latexpdf/latexpdf_test.rb +19 -0
  69. data/test/latexpdf/logger_test.rb +6 -0
  70. data/test/latexpdf/pdf_generator_test.rb +39 -0
  71. data/test/test_helper.rb +57 -0
  72. data/test/testdata/invalid_tex.tex +3 -0
  73. data/test/testdata/minimal.tex +5 -0
  74. metadata +281 -0
@@ -0,0 +1,42 @@
1
+ Rails.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 file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = 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
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -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,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -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,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -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,3 @@
1
+ Rails.application.routes.draw do
2
+ get "/tex/:action", controller: "tex"
3
+ end
@@ -0,0 +1,22 @@
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 the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 93e0afdf0a3bdd7590e9478673d3ef6908a27281eec33fc94d55546a3d889764d6482122d6f34e4af52bf8a75a17744cc7c856cf2f099094dcbb54945ca33f61
15
+
16
+ test:
17
+ secret_key_base: 8daa14fff2f39186e1369ba7a82c2b6f6d808adbe0c7dc27c2b09df3696ab2efced813a5f8968a394ec2027552f682f941b5ba474bca09c7c900e88266a08a23
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
@@ -0,0 +1,458 @@
1
+ -----------------------
2
+ RenderingTest: test_Boo
3
+ -----------------------
4
+ Started GET "/handlers/rb_handler" for 127.0.0.1 at 2016-05-23 14:54:10 +0200
5
+ -----------------------
6
+ RenderingTest: test_Boo
7
+ -----------------------
8
+ Started GET "/handlers/rb_handler" for 127.0.0.1 at 2016-05-23 14:56:09 +0200
9
+ -----------------------
10
+ RenderingTest: test_Boo
11
+ -----------------------
12
+ Started GET "/handlers/tex_handler" for 127.0.0.1 at 2016-05-23 14:56:23 +0200
13
+ -----------------------
14
+ RenderingTest: test_Boo
15
+ -----------------------
16
+ Started GET "/handlers/tex_example" for 127.0.0.1 at 2016-05-23 14:56:34 +0200
17
+ -----------------------
18
+ RenderingTest: test_Boo
19
+ -----------------------
20
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 14:57:17 +0200
21
+ -----------------------
22
+ RenderingTest: test_Boo
23
+ -----------------------
24
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 14:57:39 +0200
25
+ Processing by TexController#example as HTML
26
+ Rendered tex/example.tex within layouts/application (2.0ms)
27
+ Completed 500 Internal Server Error in 13ms
28
+ -----------------------
29
+ RenderingTest: test_Boo
30
+ -----------------------
31
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 14:58:32 +0200
32
+ Processing by TexController#example as HTML
33
+ Rendered tex/example.tex within layouts/application (2.0ms)
34
+ Completed 500 Internal Server Error in 12ms
35
+ -----------------------
36
+ RenderingTest: test_Boo
37
+ -----------------------
38
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 15:02:14 +0200
39
+ Processing by TexController#example as HTML
40
+ Rendered tex/example.html within layouts/application (1.7ms)
41
+ Completed 200 OK in 208ms (Views: 207.8ms)
42
+ -----------------------
43
+ RenderingTest: test_Boo
44
+ -----------------------
45
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 15:02:48 +0200
46
+ Processing by TexController#example as HTML
47
+ Completed 500 Internal Server Error in 10ms
48
+ -----------------------
49
+ RenderingTest: test_Boo
50
+ -----------------------
51
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 15:03:10 +0200
52
+ Processing by TexController#example as HTML
53
+ Completed 500 Internal Server Error in 10ms
54
+ -----------------------
55
+ RenderingTest: test_Boo
56
+ -----------------------
57
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 15:03:25 +0200
58
+ Processing by TexController#example as HTML
59
+ Completed 500 Internal Server Error in 8ms
60
+ -----------------------
61
+ RenderingTest: test_Boo
62
+ -----------------------
63
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 15:12:58 +0200
64
+ Processing by TexController#example as HTML
65
+ Rendered tex/example.tex within layouts/application (2.0ms)
66
+ Completed 500 Internal Server Error in 13ms
67
+ -----------------------
68
+ RenderingTest: test_Boo
69
+ -----------------------
70
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 15:13:20 +0200
71
+ Processing by TexController#example as HTML
72
+ Rendered tex/example.tex within layouts/application (3.0ms)
73
+ Completed 500 Internal Server Error in 11ms
74
+ -----------------------
75
+ RenderingTest: test_Boo
76
+ -----------------------
77
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 15:18:07 +0200
78
+ Processing by TexController#example as HTML
79
+ Rendered tex/example.tex within layouts/application (2.2ms)
80
+ Completed 500 Internal Server Error in 10ms
81
+ -----------------------
82
+ RenderingTest: test_Boo
83
+ -----------------------
84
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 15:19:10 +0200
85
+ Processing by TexController#example as HTML
86
+ Rendered tex/example.tex within layouts/application (6.3ms)
87
+ Completed 500 Internal Server Error in 26ms
88
+ -----------------------
89
+ RenderingTest: test_Boo
90
+ -----------------------
91
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 15:25:41 +0200
92
+ Processing by TexController#example as HTML
93
+ Rendered tex/example.tex within layouts/application (3.7ms)
94
+ Completed 500 Internal Server Error in 14ms
95
+ -----------------------
96
+ RenderingTest: test_Boo
97
+ -----------------------
98
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 15:26:01 +0200
99
+ Processing by TexController#example as HTML
100
+ Rendered tex/example.tex within layouts/application (1.5ms)
101
+ Completed 500 Internal Server Error in 9ms
102
+ -----------------------
103
+ RenderingTest: test_Boo
104
+ -----------------------
105
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 15:29:33 +0200
106
+ Processing by TexController#example as HTML
107
+ Rendered tex/example.tex within layouts/application (2.2ms)
108
+ Completed 500 Internal Server Error in 13ms
109
+ -----------------------
110
+ RenderingTest: test_Boo
111
+ -----------------------
112
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 16:03:56 +0200
113
+ Processing by TexController#example as HTML
114
+ Rendered tex/example.tex within layouts/application (2.4ms)
115
+ Completed 500 Internal Server Error in 14ms
116
+ -----------------------
117
+ RenderingTest: test_Boo
118
+ -----------------------
119
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 16:04:33 +0200
120
+ Processing by TexController#example as HTML
121
+ Rendered tex/example.tex within layouts/application (584.9ms)
122
+ Completed 500 Internal Server Error in 595ms
123
+ -----------------------
124
+ RenderingTest: test_Boo
125
+ -----------------------
126
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 16:05:11 +0200
127
+ Processing by TexController#example as HTML
128
+ Rendered tex/example.tex within layouts/application (391.5ms)
129
+ Completed 500 Internal Server Error in 400ms
130
+ -----------------------
131
+ RenderingTest: test_Boo
132
+ -----------------------
133
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 16:06:05 +0200
134
+ Processing by TexController#example as HTML
135
+ Rendered tex/example.tex within layouts/application (369.4ms)
136
+ Completed 500 Internal Server Error in 378ms
137
+ -----------------------
138
+ RenderingTest: test_Boo
139
+ -----------------------
140
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 16:06:59 +0200
141
+ Processing by TexController#example as HTML
142
+ Rendered tex/example.tex within layouts/application (1316.1ms)
143
+ Completed 500 Internal Server Error in 1324ms
144
+ -----------------------
145
+ RenderingTest: test_Boo
146
+ -----------------------
147
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 16:12:19 +0200
148
+ Processing by TexController#example as HTML
149
+ Rendered tex/example.tex within layouts/application (1439.4ms)
150
+ Completed 200 OK in 1607ms (Views: 1607.2ms)
151
+ -----------------------
152
+ RenderingTest: test_Boo
153
+ -----------------------
154
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 16:12:43 +0200
155
+ Processing by TexController#example as HTML
156
+ Rendered tex/example.tex within layouts/application (1269.4ms)
157
+ Completed 200 OK in 1451ms (Views: 1451.0ms)
158
+ -----------------------
159
+ RenderingTest: test_Boo
160
+ -----------------------
161
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 16:13:32 +0200
162
+ Processing by TexController#example as HTML
163
+ Rendered tex/example.tex (1280.5ms)
164
+ Completed 200 OK in 1287ms (Views: 1286.6ms)
165
+ -----------------------
166
+ RenderingTest: test_Boo
167
+ -----------------------
168
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 16:16:25 +0200
169
+ Processing by TexController#example as HTML
170
+ Rendered tex/example.tex (1380.0ms)
171
+ Completed 200 OK in 1386ms (Views: 1386.0ms)
172
+ -----------------------
173
+ RenderingTest: test_Boo
174
+ -----------------------
175
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 16:16:43 +0200
176
+ Processing by TexController#example as HTML
177
+ Rendered tex/example.tex (1331.7ms)
178
+ Completed 200 OK in 1339ms (Views: 1338.7ms)
179
+ -----------------------
180
+ RenderingTest: test_Boo
181
+ -----------------------
182
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 16:17:05 +0200
183
+ Processing by TexController#example as HTML
184
+ Rendered tex/example.tex (1328.4ms)
185
+ Completed 200 OK in 1336ms (Views: 1335.4ms)
186
+ -----------------------
187
+ RenderingTest: test_Boo
188
+ -----------------------
189
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 16:18:13 +0200
190
+ Processing by TexController#example as HTML
191
+ Completed 406 Not Acceptable in 0ms
192
+ -----------------------
193
+ RenderingTest: test_Boo
194
+ -----------------------
195
+ Started GET "/tex/example" for 127.0.0.1 at 2016-05-23 16:19:22 +0200
196
+ Processing by TexController#example as HTML
197
+ Completed 406 Not Acceptable in 0ms
198
+ -----------------------
199
+ RenderingTest: test_Boo
200
+ -----------------------
201
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:20:50 +0200
202
+ Processing by TexController#example as PDF
203
+ Rendered tex/example.tex (1452.2ms)
204
+ Completed 200 OK in 1461ms (Views: 1460.7ms)
205
+ -----------------------
206
+ RenderingTest: test_Boo
207
+ -----------------------
208
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:21:28 +0200
209
+ Processing by TexController#example as PDF
210
+ Rendered tex/example.tex (1226.5ms)
211
+ Completed 200 OK in 1236ms (Views: 1235.7ms)
212
+ -----------------------
213
+ RenderingTest: test_Boo
214
+ -----------------------
215
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:22:20 +0200
216
+ Processing by TexController#example as PDF
217
+ Rendered tex/example.tex (1356.7ms)
218
+ Completed 200 OK in 1364ms (Views: 1363.5ms)
219
+ -----------------------
220
+ RenderingTest: test_Boo
221
+ -----------------------
222
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:22:28 +0200
223
+ Processing by TexController#example as PDF
224
+ Rendered tex/example.tex (1266.4ms)
225
+ Completed 200 OK in 1273ms (Views: 1272.5ms)
226
+ -----------------------
227
+ RenderingTest: test_Boo
228
+ -----------------------
229
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:23:18 +0200
230
+ -----------------------
231
+ RenderingTest: test_Boo
232
+ -----------------------
233
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:24:41 +0200
234
+ Processing by TexController#example as PDF
235
+ Rendered tex/example.tex (2907.5ms)
236
+ Completed 200 OK in 2918ms (Views: 2917.6ms)
237
+ -----------------------
238
+ RenderingTest: test_Boo
239
+ -----------------------
240
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:39:22 +0200
241
+ Processing by TexController#example as PDF
242
+ Rendered tex/example.tex (1183.2ms)
243
+ Completed 200 OK in 1192ms (Views: 1192.2ms)
244
+ -----------------------
245
+ RenderingTest: test_Boo
246
+ -----------------------
247
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:39:37 +0200
248
+ Processing by TexController#example as PDF
249
+ Rendered tex/example.tex (3252.5ms)
250
+ Completed 200 OK in 3260ms (Views: 3260.0ms)
251
+ -----------------------
252
+ RenderingTest: test_Boo
253
+ -----------------------
254
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:39:46 +0200
255
+ Processing by TexController#example as PDF
256
+ Rendered tex/example.tex (1187.3ms)
257
+ Completed 200 OK in 1195ms (Views: 1194.3ms)
258
+ -----------------------
259
+ RenderingTest: test_Boo
260
+ -----------------------
261
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:40:45 +0200
262
+ Processing by TexController#example as PDF
263
+ Rendered tex/example.tex (1219.8ms)
264
+ Completed 200 OK in 1229ms (Views: 1228.8ms)
265
+ -----------------------
266
+ RenderingTest: test_Boo
267
+ -----------------------
268
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:41:49 +0200
269
+ Processing by TexController#example as PDF
270
+ Rendered tex/example.pdf.tex (2898.1ms)
271
+ Completed 200 OK in 2907ms (Views: 2907.1ms)
272
+ -----------------------
273
+ RenderingTest: test_Boo
274
+ -----------------------
275
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:43:32 +0200
276
+ Processing by TexController#example as PDF
277
+ Rendered tex/example.pdf.tex (1305.6ms)
278
+ Completed 200 OK in 1313ms (Views: 1312.4ms)
279
+ -----------------------
280
+ RenderingTest: test_Boo
281
+ -----------------------
282
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:44:05 +0200
283
+ Processing by TexController#example as PDF
284
+ Rendered tex/example.pdf.tex (1227.8ms)
285
+ Completed 200 OK in 1235ms (Views: 1235.0ms)
286
+ -----------------------
287
+ RenderingTest: test_Boo
288
+ -----------------------
289
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:44:22 +0200
290
+ Processing by TexController#example as PDF
291
+ Rendered tex/example.pdf.tex (1224.8ms)
292
+ Completed 200 OK in 1232ms (Views: 1232.0ms)
293
+ -----------------------
294
+ RenderingTest: test_Boo
295
+ -----------------------
296
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:44:38 +0200
297
+ Processing by TexController#example as PDF
298
+ Rendered tex/example.pdf.tex (1240.9ms)
299
+ Completed 200 OK in 1248ms (Views: 1247.9ms)
300
+ -----------------------
301
+ RenderingTest: test_Boo
302
+ -----------------------
303
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:44:50 +0200
304
+ Processing by TexController#example as PDF
305
+ Rendered tex/example.pdf.tex (1219.5ms)
306
+ Completed 200 OK in 1227ms (Views: 1227.1ms)
307
+ -----------------------
308
+ RenderingTest: test_Boo
309
+ -----------------------
310
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:45:25 +0200
311
+ Processing by TexController#example as PDF
312
+ Rendered tex/example.pdf.tex (1234.0ms)
313
+ Completed 200 OK in 1242ms (Views: 1241.4ms)
314
+ -----------------------------------------------------------
315
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
316
+ -----------------------------------------------------------
317
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:46:06 +0200
318
+ Processing by TexController#example as PDF
319
+ Rendered tex/example.pdf.tex (1241.9ms)
320
+ Completed 200 OK in 1251ms (Views: 1250.6ms)
321
+ -----------------------------------------------------------
322
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
323
+ -----------------------------------------------------------
324
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:46:35 +0200
325
+ Processing by TexController#example as PDF
326
+ Rendered tex/example.pdf.tex (1164.9ms)
327
+ Completed 200 OK in 1173ms (Views: 1172.3ms)
328
+ -----------------------------------------------------------
329
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
330
+ -----------------------------------------------------------
331
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 16:49:24 +0200
332
+ Processing by TexController#example as PDF
333
+ Completed 500 Internal Server Error in 11ms
334
+ -----------------------------------------------------------
335
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
336
+ -----------------------------------------------------------
337
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:18:37 +0200
338
+ Processing by TexController#example as PDF
339
+ Completed 500 Internal Server Error in 11ms
340
+ -----------------------------------------------------------
341
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
342
+ -----------------------------------------------------------
343
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:19:19 +0200
344
+ Processing by TexController#example as PDF
345
+ Rendered tex/example.pdf.tex.erb (0.7ms)
346
+ Completed 500 Internal Server Error in 10ms
347
+ -----------------------------------------------------------
348
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
349
+ -----------------------------------------------------------
350
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:19:38 +0200
351
+ Processing by TexController#example as PDF
352
+ Rendered tex/example.pdf.tex.erb (1.9ms)
353
+ Completed 200 OK in 11ms (Views: 10.3ms)
354
+ -----------------------------------------------------------
355
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
356
+ -----------------------------------------------------------
357
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:19:59 +0200
358
+ Processing by TexController#example as PDF
359
+ Rendered tex/example.pdf.tex.erb (1.6ms)
360
+ Completed 200 OK in 10ms (Views: 10.0ms)
361
+ -----------------------------------------------------------
362
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
363
+ -----------------------------------------------------------
364
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:26:19 +0200
365
+ Processing by TexController#example as PDF
366
+ Rendered tex/example.pdf.tex.erb (1.5ms)
367
+ Completed 200 OK in 11ms (Views: 10.4ms)
368
+ -----------------------------------------------------------
369
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
370
+ -----------------------------------------------------------
371
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:27:56 +0200
372
+ Processing by TexController#example as PDF
373
+ Rendered tex/example.pdf.tex.erb (1.4ms)
374
+ Completed 200 OK in 10ms (Views: 9.6ms)
375
+ -----------------------------------------------------------
376
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
377
+ -----------------------------------------------------------
378
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:28:18 +0200
379
+ Processing by TexController#example as PDF
380
+ Rendered tex/example.pdf.tex.erb (1.1ms)
381
+ Completed 200 OK in 8ms (Views: 7.9ms)
382
+ -----------------------------------------------------------
383
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
384
+ -----------------------------------------------------------
385
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:29:01 +0200
386
+ Processing by TexController#example as PDF
387
+ Rendered tex/example.pdf.tex.erb (2.1ms)
388
+ Completed 200 OK in 12ms (Views: 11.8ms)
389
+ -----------------------------------------------------------
390
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
391
+ -----------------------------------------------------------
392
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:29:37 +0200
393
+ Processing by TexController#example as PDF
394
+ Rendered tex/example.pdf.tex.erb (1.4ms)
395
+ Completed 200 OK in 9ms (Views: 9.3ms)
396
+ -----------------------------------------------------------
397
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
398
+ -----------------------------------------------------------
399
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:30:22 +0200
400
+ Processing by TexController#example as PDF
401
+ Rendered tex/example.pdf.tex (2.2ms)
402
+ Completed 500 Internal Server Error in 11ms
403
+ -----------------------------------------------------------
404
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
405
+ -----------------------------------------------------------
406
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:31:08 +0200
407
+ Processing by TexController#example as PDF
408
+ Rendered tex/example.pdf.tex (0.7ms)
409
+ Completed 500 Internal Server Error in 10ms
410
+ -----------------------------------------------------------
411
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
412
+ -----------------------------------------------------------
413
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:34:40 +0200
414
+ Processing by TexController#example as PDF
415
+ Rendered tex/example.pdf.tex (1.8ms)
416
+ Completed 500 Internal Server Error in 10ms
417
+ -----------------------------------------------------------
418
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
419
+ -----------------------------------------------------------
420
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:34:51 +0200
421
+ Processing by TexController#example as PDF
422
+ Rendered tex/example.pdf.tex (1473.0ms)
423
+ Completed 200 OK in 1480ms (Views: 1479.6ms)
424
+ -----------------------------------------------------------
425
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
426
+ -----------------------------------------------------------
427
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:37:46 +0200
428
+ Processing by TexController#example as PDF
429
+ Rendered tex/example.pdf.tex (2875.0ms)
430
+ Completed 200 OK in 2885ms (Views: 2884.2ms)
431
+ -----------------------------------------------------------
432
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
433
+ -----------------------------------------------------------
434
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:38:05 +0200
435
+ Processing by TexController#example as PDF
436
+ Rendered tex/example.pdf.tex (1331.6ms)
437
+ Completed 200 OK in 1338ms (Views: 1337.8ms)
438
+ -----------------------------------------------------------
439
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
440
+ -----------------------------------------------------------
441
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:38:13 +0200
442
+ Processing by TexController#example as PDF
443
+ Rendered tex/example.pdf.tex (1206.4ms)
444
+ Completed 200 OK in 1214ms (Views: 1214.1ms)
445
+ -----------------------------------------------------------
446
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
447
+ -----------------------------------------------------------
448
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:39:51 +0200
449
+ Processing by TexController#example as PDF
450
+ Rendered tex/example.pdf.tex (1147.5ms)
451
+ Completed 200 OK in 1156ms (Views: 1155.3ms)
452
+ -----------------------------------------------------------
453
+ RenderingTest: test_Generate_PDF_on_the_fly_in_a_controller
454
+ -----------------------------------------------------------
455
+ Started GET "/tex/example.pdf" for 127.0.0.1 at 2016-05-23 17:40:08 +0200
456
+ Processing by TexController#example as PDF
457
+ Rendered tex/example.pdf.tex (1144.2ms)
458
+ Completed 200 OK in 1154ms (Views: 1153.8ms)