robots_dot_text 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.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +13 -0
  3. data/README.md +30 -0
  4. data/Rakefile +34 -0
  5. data/app/controllers/robots_dot_text_controller.rb +9 -0
  6. data/config/routes.rb +3 -0
  7. data/lib/generators/robots_dot_text/move_existing_robots_file_generator.rb +9 -0
  8. data/lib/robots_dot_text.rb +4 -0
  9. data/lib/robots_dot_text/engine.rb +4 -0
  10. data/lib/robots_dot_text/version.rb +3 -0
  11. data/lib/tasks/robots_dot_text_tasks.rake +4 -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/helpers/application_helper.rb +2 -0
  18. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  19. data/test/dummy/bin/bundle +3 -0
  20. data/test/dummy/bin/rails +4 -0
  21. data/test/dummy/bin/rake +4 -0
  22. data/test/dummy/config.ru +4 -0
  23. data/test/dummy/config/application.rb +23 -0
  24. data/test/dummy/config/boot.rb +5 -0
  25. data/test/dummy/config/database.yml +25 -0
  26. data/test/dummy/config/environment.rb +5 -0
  27. data/test/dummy/config/environments/development.rb +37 -0
  28. data/test/dummy/config/environments/production.rb +78 -0
  29. data/test/dummy/config/environments/test.rb +39 -0
  30. data/test/dummy/config/initializers/assets.rb +8 -0
  31. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  32. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  33. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  34. data/test/dummy/config/initializers/inflections.rb +16 -0
  35. data/test/dummy/config/initializers/mime_types.rb +4 -0
  36. data/test/dummy/config/initializers/session_store.rb +3 -0
  37. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  38. data/test/dummy/config/locales/en.yml +23 -0
  39. data/test/dummy/config/routes.rb +56 -0
  40. data/test/dummy/config/secrets.yml +22 -0
  41. data/test/dummy/db/test.sqlite3 +0 -0
  42. data/test/dummy/log/test.log +335 -0
  43. data/test/dummy/public/404.html +67 -0
  44. data/test/dummy/public/422.html +67 -0
  45. data/test/dummy/public/500.html +66 -0
  46. data/test/dummy/public/favicon.ico +0 -0
  47. data/test/dummy/public/robots.test.txt +1 -0
  48. data/test/integration/robots_dot_text_render_test.rb +12 -0
  49. data/test/robots_dot_text_test.rb +7 -0
  50. data/test/test_helper.rb +18 -0
  51. metadata +160 -0
@@ -0,0 +1,39 @@
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 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
+
37
+ # Raises error for missing translations
38
+ # config.action_view.raise_on_missing_translations = true
39
+ end
@@ -0,0 +1,8 @@
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
+ # Precompile additional assets.
7
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
8
+ # 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,56 @@
1
+ Rails.application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ 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: e95cd0d9d0c9a8688e8b13504b00ba5df8fb385f00cf4a13c8d4ed35edffd57f1e1ff4e79e677f8d731a1b4392ee3e38289f4ef71703e35390b493c04a8da329
15
+
16
+ test:
17
+ secret_key_base: e7b9b2fbad3720db774bdfa80fe9dbf1ce22355f80074b10063e326e7d77d746268667b9f6a033b3434485a813d9d359cec1c69f7ee4791f5b305c96cc4b811c
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"] %>
File without changes
@@ -0,0 +1,335 @@
1
+  (0.1ms) begin transaction
2
+ -----------------------------
3
+ RobotsDotTextTest: test_truth
4
+ -----------------------------
5
+  (0.1ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ -----------------------------
8
+ RobotsDotTextTest: test_truth
9
+ -----------------------------
10
+  (0.1ms) rollback transaction
11
+  (0.0ms) begin transaction
12
+ ------------------------------
13
+ NavigationTest: test_the_truth
14
+ ------------------------------
15
+  (0.0ms) rollback transaction
16
+  (0.1ms) begin transaction
17
+ ------------------------------
18
+ NavigationTest: test_the_truth
19
+ ------------------------------
20
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 21:57:13 -0800
21
+ Processing by RobotsDotTextController#show as HTML
22
+ Completed 500 Internal Server Error in 27ms
23
+  (0.1ms) rollback transaction
24
+  (0.0ms) begin transaction
25
+ -----------------------------
26
+ RobotsDotTextTest: test_truth
27
+ -----------------------------
28
+  (0.0ms) rollback transaction
29
+  (0.1ms) begin transaction
30
+ ------------------------------
31
+ NavigationTest: test_the_truth
32
+ ------------------------------
33
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 21:57:41 -0800
34
+ Processing by RobotsDotTextController#show as HTML
35
+ Completed 500 Internal Server Error in 11ms
36
+  (0.1ms) rollback transaction
37
+  (0.0ms) begin transaction
38
+ -----------------------------
39
+ RobotsDotTextTest: test_truth
40
+ -----------------------------
41
+  (0.0ms) rollback transaction
42
+  (0.1ms) begin transaction
43
+ ------------------------------
44
+ NavigationTest: test_the_truth
45
+ ------------------------------
46
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 22:04:25 -0800
47
+ Processing by RobotsDotTextController#show as HTML
48
+ Completed 500 Internal Server Error in 10ms
49
+  (0.1ms) rollback transaction
50
+  (0.0ms) begin transaction
51
+ -----------------------------
52
+ RobotsDotTextTest: test_truth
53
+ -----------------------------
54
+  (0.0ms) rollback transaction
55
+  (0.1ms) begin transaction
56
+ ------------------------------
57
+ NavigationTest: test_the_truth
58
+ ------------------------------
59
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 22:10:31 -0800
60
+ Processing by RobotsDotTextController#show as HTML
61
+ Completed 500 Internal Server Error in 11ms
62
+  (0.1ms) rollback transaction
63
+  (0.1ms) begin transaction
64
+ -----------------------------
65
+ RobotsDotTextTest: test_truth
66
+ -----------------------------
67
+  (0.0ms) rollback transaction
68
+  (0.1ms) begin transaction
69
+ -----------------------------
70
+ RobotsDotTextTest: test_truth
71
+ -----------------------------
72
+  (0.1ms) rollback transaction
73
+  (0.0ms) begin transaction
74
+ ------------------------------
75
+ NavigationTest: test_the_truth
76
+ ------------------------------
77
+ Started GET "/robots.txt?use_route=robots_dot_text" for 127.0.0.1 at 2014-11-15 22:14:05 -0800
78
+ Processing by RobotsDotTextController#show as HTML
79
+ Parameters: {"use_route"=>"robots_dot_text"}
80
+ Completed 500 Internal Server Error in 2ms
81
+  (0.1ms) rollback transaction
82
+  (0.1ms) begin transaction
83
+ -----------------------------
84
+ RobotsDotTextTest: test_truth
85
+ -----------------------------
86
+  (0.0ms) rollback transaction
87
+  (0.0ms) begin transaction
88
+ ------------------------------
89
+ NavigationTest: test_the_truth
90
+ ------------------------------
91
+ Started GET "/robots.txt?use_route=robots_dot_text" for 127.0.0.1 at 2014-11-15 22:14:19 -0800
92
+ Processing by RobotsDotTextController#show as HTML
93
+ Parameters: {"use_route"=>"robots_dot_text"}
94
+ Completed 500 Internal Server Error in 9ms
95
+  (0.1ms) rollback transaction
96
+  (0.1ms) begin transaction
97
+ -----------------------------
98
+ RobotsDotTextTest: test_truth
99
+ -----------------------------
100
+  (0.0ms) rollback transaction
101
+  (0.0ms) begin transaction
102
+ ------------------------------
103
+ NavigationTest: test_the_truth
104
+ ------------------------------
105
+ Started GET "/robots.txt?use_route=robots_dot_text" for 127.0.0.1 at 2014-11-15 22:15:31 -0800
106
+ Processing by RobotsDotTextController#show as HTML
107
+ Parameters: {"use_route"=>"robots_dot_text"}
108
+ Completed 500 Internal Server Error in 9ms
109
+  (0.1ms) rollback transaction
110
+  (0.1ms) begin transaction
111
+ ------------------------------
112
+ NavigationTest: test_the_truth
113
+ ------------------------------
114
+ Started GET "/robots.txt?use_route=robots_dot_text" for 127.0.0.1 at 2014-11-15 22:15:51 -0800
115
+ Processing by RobotsDotTextController#show as HTML
116
+ Parameters: {"use_route"=>"robots_dot_text"}
117
+ Completed 500 Internal Server Error in 9ms
118
+  (0.1ms) rollback transaction
119
+  (0.0ms) begin transaction
120
+ -----------------------------
121
+ RobotsDotTextTest: test_truth
122
+ -----------------------------
123
+  (0.0ms) rollback transaction
124
+  (0.1ms) begin transaction
125
+ ------------------------------
126
+ NavigationTest: test_the_truth
127
+ ------------------------------
128
+ Started GET "/robots.txt?use_route=robots_dot_text" for 127.0.0.1 at 2014-11-15 22:16:05 -0800
129
+ Processing by RobotsDotTextController#show as HTML
130
+ Parameters: {"use_route"=>"robots_dot_text"}
131
+ Rendered public/robots.test.txt (9.7ms)
132
+ Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms)
133
+  (0.1ms) rollback transaction
134
+  (0.0ms) begin transaction
135
+ -----------------------------
136
+ RobotsDotTextTest: test_truth
137
+ -----------------------------
138
+  (0.0ms) rollback transaction
139
+  (0.1ms) begin transaction
140
+ ------------------------------
141
+ NavigationTest: test_the_truth
142
+ ------------------------------
143
+ Started GET "/robots.txt?use_route=robots_dot_text" for 127.0.0.1 at 2014-11-15 22:16:19 -0800
144
+ Processing by RobotsDotTextController#show as HTML
145
+ Parameters: {"use_route"=>"robots_dot_text"}
146
+ Rendered public/robots.test.txt (1.5ms)
147
+ Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
148
+  (0.1ms) rollback transaction
149
+  (0.0ms) begin transaction
150
+ -----------------------------
151
+ RobotsDotTextTest: test_truth
152
+ -----------------------------
153
+  (0.0ms) rollback transaction
154
+  (0.1ms) begin transaction
155
+ ------------------------------
156
+ NavigationTest: test_the_truth
157
+ ------------------------------
158
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 22:16:53 -0800
159
+ Processing by RobotsDotTextController#show as HTML
160
+ Rendered public/robots.test.txt (1.2ms)
161
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
162
+  (0.1ms) rollback transaction
163
+  (0.0ms) begin transaction
164
+ -----------------------------
165
+ RobotsDotTextTest: test_truth
166
+ -----------------------------
167
+  (0.0ms) rollback transaction
168
+  (0.1ms) begin transaction
169
+ ------------------------------
170
+ NavigationTest: test_the_truth
171
+ ------------------------------
172
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 22:18:42 -0800
173
+ Processing by RobotsDotTextController#show as HTML
174
+ Rendered public/robots.test.txt (2.5ms)
175
+ Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms)
176
+  (0.1ms) rollback transaction
177
+  (0.0ms) begin transaction
178
+ -----------------------------
179
+ RobotsDotTextTest: test_truth
180
+ -----------------------------
181
+  (0.0ms) rollback transaction
182
+  (0.1ms) begin transaction
183
+ -----------------------------
184
+ RobotsDotTextTest: test_truth
185
+ -----------------------------
186
+  (0.0ms) rollback transaction
187
+  (0.0ms) begin transaction
188
+ ------------------------------
189
+ NavigationTest: test_the_truth
190
+ ------------------------------
191
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 22:19:48 -0800
192
+ Processing by RobotsDotTextController#show as HTML
193
+ Rendered public/robots.test.txt (1.0ms)
194
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
195
+  (0.2ms) rollback transaction
196
+  (0.1ms) begin transaction
197
+ ------------------------------
198
+ NavigationTest: test_the_truth
199
+ ------------------------------
200
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 22:20:21 -0800
201
+ Processing by RobotsDotTextController#show as HTML
202
+ Rendered public/robots.test.txt (1.0ms)
203
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
204
+  (0.1ms) rollback transaction
205
+  (0.1ms) begin transaction
206
+ -----------------------------
207
+ RobotsDotTextTest: test_truth
208
+ -----------------------------
209
+  (0.0ms) rollback transaction
210
+  (0.1ms) begin transaction
211
+ -----------------------------
212
+ RobotsDotTextTest: test_truth
213
+ -----------------------------
214
+  (0.0ms) rollback transaction
215
+  (0.0ms) begin transaction
216
+ -----------------------------------------------------------
217
+ NavigationTest: test_The_test_robots.txt_should_be_rendered
218
+ -----------------------------------------------------------
219
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 22:23:28 -0800
220
+ Processing by RobotsDotTextController#show as HTML
221
+ Rendered public/robots.test.txt (1.2ms)
222
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
223
+  (0.1ms) rollback transaction
224
+  (0.1ms) begin transaction
225
+ -----------------------------------------------------------
226
+ NavigationTest: test_The_test_robots.txt_should_be_rendered
227
+ -----------------------------------------------------------
228
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 22:24:27 -0800
229
+ Processing by RobotsDotTextController#show as HTML
230
+ Rendered public/robots.test.txt (1.4ms)
231
+ Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
232
+  (0.1ms) rollback transaction
233
+  (0.0ms) begin transaction
234
+ -----------------------------
235
+ RobotsDotTextTest: test_truth
236
+ -----------------------------
237
+  (0.1ms) rollback transaction
238
+  (0.1ms) begin transaction
239
+ -----------------------------
240
+ RobotsDotTextTest: test_truth
241
+ -----------------------------
242
+  (0.0ms) rollback transaction
243
+  (0.0ms) begin transaction
244
+ --------------------------------------------------------------------
245
+ RobotsDotTextRenderTest: test_The_test_robots.txt_should_be_rendered
246
+ --------------------------------------------------------------------
247
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 22:26:24 -0800
248
+ Processing by RobotsDotTextController#show as HTML
249
+ Rendered public/robots.test.txt (1.2ms)
250
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
251
+  (0.1ms) rollback transaction
252
+  (0.1ms) begin transaction
253
+ -----------------------------
254
+ RobotsDotTextTest: test_truth
255
+ -----------------------------
256
+  (0.0ms) rollback transaction
257
+  (0.0ms) begin transaction
258
+ --------------------------------------------------------------------
259
+ RobotsDotTextRenderTest: test_The_test_robots.txt_should_be_rendered
260
+ --------------------------------------------------------------------
261
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 22:26:47 -0800
262
+ Processing by RobotsDotTextController#show as HTML
263
+ Rendered public/robots.test.txt (1.1ms)
264
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
265
+  (0.1ms) rollback transaction
266
+  (0.1ms) begin transaction
267
+ -----------------------------
268
+ RobotsDotTextTest: test_truth
269
+ -----------------------------
270
+  (0.0ms) rollback transaction
271
+  (0.0ms) begin transaction
272
+ --------------------------------------------------------------------
273
+ RobotsDotTextRenderTest: test_The_test_robots.txt_should_be_rendered
274
+ --------------------------------------------------------------------
275
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 22:27:08 -0800
276
+ Processing by RobotsDotTextController#show as HTML
277
+ Rendered public/robots.test.txt (1.0ms)
278
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
279
+  (0.1ms) rollback transaction
280
+  (0.1ms) begin transaction
281
+ --------------------------------------------------------------------
282
+ RobotsDotTextRenderTest: test_The_test_robots.txt_should_be_rendered
283
+ --------------------------------------------------------------------
284
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 22:27:41 -0800
285
+ Processing by RobotsDotTextController#show as HTML
286
+ Rendered public/robots.test.txt (1.3ms)
287
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
288
+  (0.1ms) rollback transaction
289
+  (0.1ms) begin transaction
290
+ -----------------------------
291
+ RobotsDotTextTest: test_truth
292
+ -----------------------------
293
+  (0.0ms) rollback transaction
294
+  (0.1ms) begin transaction
295
+ -----------------------------
296
+ RobotsDotTextTest: test_truth
297
+ -----------------------------
298
+  (0.0ms) rollback transaction
299
+  (0.0ms) begin transaction
300
+ --------------------------------------------------------------------
301
+ RobotsDotTextRenderTest: test_The_test_robots.txt_should_be_rendered
302
+ --------------------------------------------------------------------
303
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 22:28:13 -0800
304
+ Processing by RobotsDotTextController#show as HTML
305
+ Rendered public/robots.test.txt (1.1ms)
306
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
307
+  (0.1ms) rollback transaction
308
+  (0.1ms) begin transaction
309
+ --------------------------------------------------------------------
310
+ RobotsDotTextRenderTest: test_The_test_robots.txt_should_be_rendered
311
+ --------------------------------------------------------------------
312
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 22:28:23 -0800
313
+ Processing by RobotsDotTextController#show as HTML
314
+ Rendered public/robots.test.txt (1.2ms)
315
+ Completed 200 OK in 6ms (Views: 6.4ms | ActiveRecord: 0.0ms)
316
+  (0.1ms) rollback transaction
317
+  (0.0ms) begin transaction
318
+ -----------------------------
319
+ RobotsDotTextTest: test_truth
320
+ -----------------------------
321
+  (0.0ms) rollback transaction
322
+  (0.1ms) begin transaction
323
+ -----------------------------
324
+ RobotsDotTextTest: test_truth
325
+ -----------------------------
326
+  (0.0ms) rollback transaction
327
+  (0.1ms) begin transaction
328
+ --------------------------------------------------------------------
329
+ RobotsDotTextRenderTest: test_The_test_robots.txt_should_be_rendered
330
+ --------------------------------------------------------------------
331
+ Started GET "/robots.txt" for 127.0.0.1 at 2014-11-15 22:32:29 -0800
332
+ Processing by RobotsDotTextController#show as HTML
333
+ Rendered public/robots.test.txt (1.2ms)
334
+ Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
335
+  (0.1ms) rollback transaction