robots_dot_text 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +13 -0
- data/README.md +30 -0
- data/Rakefile +34 -0
- data/app/controllers/robots_dot_text_controller.rb +9 -0
- data/config/routes.rb +3 -0
- data/lib/generators/robots_dot_text/move_existing_robots_file_generator.rb +9 -0
- data/lib/robots_dot_text.rb +4 -0
- data/lib/robots_dot_text/engine.rb +4 -0
- data/lib/robots_dot_text/version.rb +3 -0
- data/lib/tasks/robots_dot_text_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 +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -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 +37 -0
- data/test/dummy/config/environments/production.rb +78 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/assets.rb +8 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -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 +4 -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 +56 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +335 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/public/robots.test.txt +1 -0
- data/test/integration/robots_dot_text_render_test.rb +12 -0
- data/test/robots_dot_text_test.rb +7 -0
- data/test/test_helper.rb +18 -0
- 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,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,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
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2
|
+
-----------------------------
|
3
|
+
RobotsDotTextTest: test_truth
|
4
|
+
-----------------------------
|
5
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7
|
+
-----------------------------
|
8
|
+
RobotsDotTextTest: test_truth
|
9
|
+
-----------------------------
|
10
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12
|
+
------------------------------
|
13
|
+
NavigationTest: test_the_truth
|
14
|
+
------------------------------
|
15
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
16
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
24
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
25
|
+
-----------------------------
|
26
|
+
RobotsDotTextTest: test_truth
|
27
|
+
-----------------------------
|
28
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
29
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
37
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
38
|
+
-----------------------------
|
39
|
+
RobotsDotTextTest: test_truth
|
40
|
+
-----------------------------
|
41
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
42
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
51
|
+
-----------------------------
|
52
|
+
RobotsDotTextTest: test_truth
|
53
|
+
-----------------------------
|
54
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
55
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
63
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
64
|
+
-----------------------------
|
65
|
+
RobotsDotTextTest: test_truth
|
66
|
+
-----------------------------
|
67
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
68
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
69
|
+
-----------------------------
|
70
|
+
RobotsDotTextTest: test_truth
|
71
|
+
-----------------------------
|
72
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
73
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
82
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
83
|
+
-----------------------------
|
84
|
+
RobotsDotTextTest: test_truth
|
85
|
+
-----------------------------
|
86
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
87
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
96
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
97
|
+
-----------------------------
|
98
|
+
RobotsDotTextTest: test_truth
|
99
|
+
-----------------------------
|
100
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
101
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
110
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
119
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
120
|
+
-----------------------------
|
121
|
+
RobotsDotTextTest: test_truth
|
122
|
+
-----------------------------
|
123
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
124
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
134
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
135
|
+
-----------------------------
|
136
|
+
RobotsDotTextTest: test_truth
|
137
|
+
-----------------------------
|
138
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
139
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
149
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
150
|
+
-----------------------------
|
151
|
+
RobotsDotTextTest: test_truth
|
152
|
+
-----------------------------
|
153
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
154
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
163
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
164
|
+
-----------------------------
|
165
|
+
RobotsDotTextTest: test_truth
|
166
|
+
-----------------------------
|
167
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
168
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
177
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
178
|
+
-----------------------------
|
179
|
+
RobotsDotTextTest: test_truth
|
180
|
+
-----------------------------
|
181
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
182
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
183
|
+
-----------------------------
|
184
|
+
RobotsDotTextTest: test_truth
|
185
|
+
-----------------------------
|
186
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
187
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
196
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
205
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
206
|
+
-----------------------------
|
207
|
+
RobotsDotTextTest: test_truth
|
208
|
+
-----------------------------
|
209
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
210
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
211
|
+
-----------------------------
|
212
|
+
RobotsDotTextTest: test_truth
|
213
|
+
-----------------------------
|
214
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
215
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
224
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
233
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
234
|
+
-----------------------------
|
235
|
+
RobotsDotTextTest: test_truth
|
236
|
+
-----------------------------
|
237
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
238
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
239
|
+
-----------------------------
|
240
|
+
RobotsDotTextTest: test_truth
|
241
|
+
-----------------------------
|
242
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
243
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
252
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
253
|
+
-----------------------------
|
254
|
+
RobotsDotTextTest: test_truth
|
255
|
+
-----------------------------
|
256
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
257
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
266
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
267
|
+
-----------------------------
|
268
|
+
RobotsDotTextTest: test_truth
|
269
|
+
-----------------------------
|
270
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
271
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
289
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
290
|
+
-----------------------------
|
291
|
+
RobotsDotTextTest: test_truth
|
292
|
+
-----------------------------
|
293
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
294
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
295
|
+
-----------------------------
|
296
|
+
RobotsDotTextTest: test_truth
|
297
|
+
-----------------------------
|
298
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
299
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
308
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
317
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
318
|
+
-----------------------------
|
319
|
+
RobotsDotTextTest: test_truth
|
320
|
+
-----------------------------
|
321
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
322
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
323
|
+
-----------------------------
|
324
|
+
RobotsDotTextTest: test_truth
|
325
|
+
-----------------------------
|
326
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
327
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|