robotron 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -1
  3. data/lib/robotron.rb +15 -7
  4. data/lib/robotron/version.rb +1 -1
  5. data/spec/robotron_spec.rb +25 -0
  6. data/spec/spec_helper.rb +3 -3
  7. metadata +15 -86
  8. data/spec/dummy/README.rdoc +0 -28
  9. data/spec/dummy/Rakefile +0 -6
  10. data/spec/dummy/app/assets/javascripts/application.js +0 -13
  11. data/spec/dummy/app/assets/stylesheets/application.css +0 -15
  12. data/spec/dummy/app/controllers/application_controller.rb +0 -5
  13. data/spec/dummy/app/helpers/application_helper.rb +0 -2
  14. data/spec/dummy/app/views/layouts/application.html.erb +0 -14
  15. data/spec/dummy/bin/bundle +0 -3
  16. data/spec/dummy/bin/rails +0 -4
  17. data/spec/dummy/bin/rake +0 -4
  18. data/spec/dummy/bin/setup +0 -29
  19. data/spec/dummy/config.ru +0 -4
  20. data/spec/dummy/config/application.rb +0 -25
  21. data/spec/dummy/config/boot.rb +0 -5
  22. data/spec/dummy/config/database.yml +0 -25
  23. data/spec/dummy/config/environment.rb +0 -5
  24. data/spec/dummy/config/environments/development.rb +0 -41
  25. data/spec/dummy/config/environments/production.rb +0 -79
  26. data/spec/dummy/config/environments/test.rb +0 -42
  27. data/spec/dummy/config/initializers/assets.rb +0 -11
  28. data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
  29. data/spec/dummy/config/initializers/cookies_serializer.rb +0 -3
  30. data/spec/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  31. data/spec/dummy/config/initializers/inflections.rb +0 -16
  32. data/spec/dummy/config/initializers/mime_types.rb +0 -4
  33. data/spec/dummy/config/initializers/session_store.rb +0 -3
  34. data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
  35. data/spec/dummy/config/locales/en.yml +0 -23
  36. data/spec/dummy/config/routes.rb +0 -3
  37. data/spec/dummy/config/secrets.yml +0 -22
  38. data/spec/dummy/db/development.sqlite3 +0 -0
  39. data/spec/dummy/log/development.log +0 -554
  40. data/spec/dummy/public/404.html +0 -67
  41. data/spec/dummy/public/422.html +0 -67
  42. data/spec/dummy/public/500.html +0 -66
  43. data/spec/dummy/public/favicon.ico +0 -0
  44. data/spec/robotron_test.rb +0 -1
@@ -1,5 +0,0 @@
1
- # Load the Rails application.
2
- require File.expand_path('../application', __FILE__)
3
-
4
- # Initialize the Rails application.
5
- Rails.application.initialize!
@@ -1,41 +0,0 @@
1
- Rails.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
-
30
- # Asset digests allow you to set far-future HTTP expiration dates on all assets,
31
- # yet still be able to expire them through the digest params.
32
- config.assets.digest = true
33
-
34
- # Adds additional error checking when serving assets at runtime.
35
- # Checks for improperly declared sprockets dependencies.
36
- # Raises helpful error messages.
37
- config.assets.raise_runtime_errors = true
38
-
39
- # Raises error for missing translations
40
- # config.action_view.raise_on_missing_translations = true
41
- end
@@ -1,79 +0,0 @@
1
- Rails.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 threaded 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
20
- # NGINX, varnish or squid.
21
- # config.action_dispatch.rack_cache = true
22
-
23
- # Disable serving static files from the `/public` folder by default since
24
- # Apache or NGINX already handles this.
25
- config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
26
-
27
- # Compress JavaScripts and CSS.
28
- config.assets.js_compressor = :uglifier
29
- # config.assets.css_compressor = :sass
30
-
31
- # Do not fallback to assets pipeline if a precompiled asset is missed.
32
- config.assets.compile = false
33
-
34
- # Asset digests allow you to set far-future HTTP expiration dates on all assets,
35
- # yet still be able to expire them through the digest params.
36
- config.assets.digest = true
37
-
38
- # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
39
-
40
- # Specifies the header that your server uses for sending files.
41
- # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
42
- # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
43
-
44
- # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
45
- # config.force_ssl = true
46
-
47
- # Use the lowest log level to ensure availability of diagnostic information
48
- # when problems arise.
49
- config.log_level = :debug
50
-
51
- # Prepend all log lines with the following tags.
52
- # config.log_tags = [ :subdomain, :uuid ]
53
-
54
- # Use a different logger for distributed setups.
55
- # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
56
-
57
- # Use a different cache store in production.
58
- # config.cache_store = :mem_cache_store
59
-
60
- # Enable serving of images, stylesheets, and JavaScripts from an asset server.
61
- # config.action_controller.asset_host = 'http://assets.example.com'
62
-
63
- # Ignore bad email addresses and do not raise email delivery errors.
64
- # Set this to true and configure the email server for immediate delivery to raise delivery errors.
65
- # config.action_mailer.raise_delivery_errors = false
66
-
67
- # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
68
- # the I18n.default_locale when a translation cannot be found).
69
- config.i18n.fallbacks = true
70
-
71
- # Send deprecation notices to registered listeners.
72
- config.active_support.deprecation = :notify
73
-
74
- # Use default logging formatter so that PID and timestamp are not suppressed.
75
- config.log_formatter = ::Logger::Formatter.new
76
-
77
- # Do not dump schema after migrations.
78
- config.active_record.dump_schema_after_migration = false
79
- end
@@ -1,42 +0,0 @@
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
@@ -1,11 +0,0 @@
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 )
@@ -1,7 +0,0 @@
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!
@@ -1,3 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -1,4 +0,0 @@
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]
@@ -1,16 +0,0 @@
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
@@ -1,4 +0,0 @@
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
@@ -1,3 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -1,14 +0,0 @@
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
@@ -1,23 +0,0 @@
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"
@@ -1,3 +0,0 @@
1
- Rails.application.routes.draw do
2
- get '/robots.txt' => Robotron
3
- end
@@ -1,22 +0,0 @@
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: f8090b293c232bb23cffb5becba5bcdf82deef353282479d74cb78ad06e69478ff84773944a27dc964e8602c6cfa08192eb580d16bee0b7c6e2e38c9022c5589
15
-
16
- test:
17
- secret_key_base: 3a4e5de3c3ae85067edf053dc229d83e0701e9c6b67fe3545a29c87ae3777152b1dac1a2d020d914a1c67830786d6fe87b6c6c74575b09450a9317b83cf618c3
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
@@ -1,554 +0,0 @@
1
-
2
-
3
- Started GET "/" for ::1 at 2015-06-14 15:07:49 +0300
4
- Processing by Rails::WelcomeController#index as HTML
5
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/railties-4.2.1/lib/rails/templates/rails/welcome/index.html.erb (4.2ms)
6
- Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.0ms)
7
-
8
-
9
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:07:54 +0300
10
-
11
- ActionController::RoutingError (No route matches [GET] "/robots.txt"):
12
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
13
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
14
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
15
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
16
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
17
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
18
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
19
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
20
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21
- rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
22
- rack (1.6.1) lib/rack/runtime.rb:18:in `call'
23
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
24
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
25
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
26
- rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
27
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
28
- railties (4.2.1) lib/rails/application.rb:164:in `call'
29
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
30
- rack (1.6.1) lib/rack/content_length.rb:15:in `call'
31
- rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
32
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
33
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
34
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
35
-
36
-
37
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
38
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms)
39
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
40
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (14.9ms)
41
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.9ms)
42
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.3ms)
43
-
44
-
45
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:08:14 +0300
46
-
47
- ActionController::RoutingError (No route matches [GET] "/robots.txt"):
48
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
49
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
50
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
51
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
52
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
53
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
54
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
55
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
56
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
57
- rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
58
- rack (1.6.1) lib/rack/runtime.rb:18:in `call'
59
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
60
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
61
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
62
- rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
63
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
64
- railties (4.2.1) lib/rails/application.rb:164:in `call'
65
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
66
- rack (1.6.1) lib/rack/content_length.rb:15:in `call'
67
- rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
68
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
69
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
70
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
71
-
72
-
73
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
74
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
75
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
76
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
77
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
78
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (26.7ms)
79
-
80
-
81
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:08:25 +0300
82
-
83
- ActionController::RoutingError (No route matches [GET] "/robots.txt"):
84
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
85
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
86
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
87
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
88
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
89
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
90
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
91
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
92
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
93
- rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
94
- rack (1.6.1) lib/rack/runtime.rb:18:in `call'
95
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
96
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
97
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
98
- rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
99
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
100
- railties (4.2.1) lib/rails/application.rb:164:in `call'
101
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
102
- rack (1.6.1) lib/rack/content_length.rb:15:in `call'
103
- rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
104
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
105
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
106
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
107
-
108
-
109
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
110
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
111
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
112
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.0ms)
113
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.0ms)
114
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.6ms)
115
-
116
-
117
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:09:45 +0300
118
-
119
- ActionController::RoutingError (No route matches [GET] "/robots.txt"):
120
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
121
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
122
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
123
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
124
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
125
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
126
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
127
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
128
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
129
- rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
130
- rack (1.6.1) lib/rack/runtime.rb:18:in `call'
131
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
132
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
133
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
134
- rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
135
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
136
- railties (4.2.1) lib/rails/application.rb:164:in `call'
137
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
138
- rack (1.6.1) lib/rack/content_length.rb:15:in `call'
139
- rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
140
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
141
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
142
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
143
-
144
-
145
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
146
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
147
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
148
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms)
149
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
150
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (23.4ms)
151
-
152
-
153
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:10:23 +0300
154
-
155
- ArgumentError (You should not use the `match` method in your router without specifying an HTTP method.
156
- If you want to expose your action to both GET and POST, add `via: [:get, :post]` option.
157
- If you want to expose your action to GET, use `get` in the router:
158
- Instead of: match "controller#action"
159
- Do: get "controller#action"):
160
- config/routes.rb:2:in `block in <top (required)>'
161
- config/routes.rb:1:in `<top (required)>'
162
-
163
-
164
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.2ms)
165
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
166
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
167
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (27.3ms)
168
-
169
-
170
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:10:35 +0300
171
-
172
-
173
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:11:04 +0300
174
-
175
-
176
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:11:13 +0300
177
-
178
-
179
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:11:43 +0300
180
-
181
-
182
- Started GET "/robots.txt" for 127.0.0.1 at 2015-06-14 15:15:12 +0300
183
-
184
- NameError (undefined local variable or method `default_body' for Robotnik:Module):
185
- /Users/droptheplot/www/robotnik/lib/robotnik.rb:6:in `call'
186
- actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
187
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
188
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
189
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
190
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
191
- rack (1.6.1) lib/rack/etag.rb:24:in `call'
192
- rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
193
- rack (1.6.1) lib/rack/head.rb:13:in `call'
194
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
195
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
196
- rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
197
- rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
198
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
199
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
200
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
201
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
202
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
203
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
204
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
205
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
206
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
207
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
208
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
209
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
210
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
211
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
212
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
213
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
214
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
215
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
216
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
217
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
218
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
219
- rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
220
- rack (1.6.1) lib/rack/runtime.rb:18:in `call'
221
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
222
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
223
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
224
- rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
225
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
226
- railties (4.2.1) lib/rails/application.rb:164:in `call'
227
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
228
- rack (1.6.1) lib/rack/content_length.rb:15:in `call'
229
- rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
230
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
231
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
232
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
233
-
234
-
235
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.0ms)
236
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
237
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.8ms)
238
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (28.4ms)
239
-
240
-
241
- Started GET "/robots.txt" for 127.0.0.1 at 2015-06-14 15:15:41 +0300
242
-
243
- NameError (undefined local variable or method `default_body' for Robotnik:Module):
244
- /Users/droptheplot/www/robotnik/lib/robotnik.rb:6:in `call'
245
- actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
246
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
247
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
248
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
249
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
250
- rack (1.6.1) lib/rack/etag.rb:24:in `call'
251
- rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
252
- rack (1.6.1) lib/rack/head.rb:13:in `call'
253
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
254
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
255
- rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
256
- rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
257
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
258
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
259
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
260
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
261
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
262
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
263
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
264
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
265
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
266
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
267
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
268
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
269
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
270
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
271
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
272
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
273
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
274
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
275
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
276
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
277
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
278
- rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
279
- rack (1.6.1) lib/rack/runtime.rb:18:in `call'
280
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
281
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
282
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
283
- rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
284
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
285
- railties (4.2.1) lib/rails/application.rb:164:in `call'
286
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
287
- rack (1.6.1) lib/rack/content_length.rb:15:in `call'
288
- rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
289
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
290
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
291
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
292
-
293
-
294
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms)
295
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
296
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
297
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.8ms)
298
-
299
-
300
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:15:49 +0300
301
-
302
- NameError (undefined local variable or method `default_body' for Robotnik:Module):
303
- /Users/droptheplot/www/robotnik/lib/robotnik.rb:6:in `call'
304
- actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
305
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
306
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
307
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
308
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
309
- rack (1.6.1) lib/rack/etag.rb:24:in `call'
310
- rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
311
- rack (1.6.1) lib/rack/head.rb:13:in `call'
312
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
313
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
314
- rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
315
- rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
316
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
317
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
318
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
319
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
320
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
321
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
322
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
323
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
324
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
325
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
326
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
327
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
328
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
329
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
330
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
331
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
332
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
333
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
334
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
335
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
336
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
337
- rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
338
- rack (1.6.1) lib/rack/runtime.rb:18:in `call'
339
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
340
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
341
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
342
- rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
343
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
344
- railties (4.2.1) lib/rails/application.rb:164:in `call'
345
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
346
- rack (1.6.1) lib/rack/content_length.rb:15:in `call'
347
- rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
348
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
349
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
350
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
351
-
352
-
353
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
354
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
355
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.3ms)
356
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (27.3ms)
357
-
358
-
359
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:15:50 +0300
360
-
361
- NameError (undefined local variable or method `default_body' for Robotnik:Module):
362
- /Users/droptheplot/www/robotnik/lib/robotnik.rb:6:in `call'
363
- actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
364
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
365
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
366
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
367
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
368
- rack (1.6.1) lib/rack/etag.rb:24:in `call'
369
- rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
370
- rack (1.6.1) lib/rack/head.rb:13:in `call'
371
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
372
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
373
- rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
374
- rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
375
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
376
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
377
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
378
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
379
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
380
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
381
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
382
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
383
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
384
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
385
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
386
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
387
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
388
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
389
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
390
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
391
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
392
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
393
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
394
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
395
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
396
- rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
397
- rack (1.6.1) lib/rack/runtime.rb:18:in `call'
398
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
399
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
400
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
401
- rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
402
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
403
- railties (4.2.1) lib/rails/application.rb:164:in `call'
404
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
405
- rack (1.6.1) lib/rack/content_length.rb:15:in `call'
406
- rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
407
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
408
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
409
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
410
-
411
-
412
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms)
413
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
414
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
415
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.7ms)
416
-
417
-
418
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:15:51 +0300
419
-
420
- NameError (undefined local variable or method `default_body' for Robotnik:Module):
421
- /Users/droptheplot/www/robotnik/lib/robotnik.rb:6:in `call'
422
- actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
423
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
424
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
425
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
426
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
427
- rack (1.6.1) lib/rack/etag.rb:24:in `call'
428
- rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
429
- rack (1.6.1) lib/rack/head.rb:13:in `call'
430
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
431
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
432
- rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
433
- rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
434
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
435
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
436
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
437
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
438
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
439
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
440
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
441
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
442
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
443
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
444
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
445
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
446
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
447
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
448
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
449
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
450
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
451
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
452
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
453
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
454
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
455
- rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
456
- rack (1.6.1) lib/rack/runtime.rb:18:in `call'
457
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
458
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
459
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
460
- rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
461
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
462
- railties (4.2.1) lib/rails/application.rb:164:in `call'
463
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
464
- rack (1.6.1) lib/rack/content_length.rb:15:in `call'
465
- rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
466
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
467
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
468
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
469
-
470
-
471
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms)
472
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
473
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
474
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.5ms)
475
-
476
-
477
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:16:20 +0300
478
-
479
- NameError (undefined local variable or method `default_body' for Robotnik:Module):
480
- /Users/droptheplot/www/robotnik/lib/robotnik.rb:6:in `call'
481
- actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
482
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
483
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
484
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
485
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
486
- rack (1.6.1) lib/rack/etag.rb:24:in `call'
487
- rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
488
- rack (1.6.1) lib/rack/head.rb:13:in `call'
489
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
490
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
491
- rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
492
- rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
493
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
494
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
495
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
496
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
497
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
498
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
499
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
500
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
501
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
502
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
503
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
504
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
505
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
506
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
507
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
508
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
509
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
510
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
511
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
512
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
513
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
514
- rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
515
- rack (1.6.1) lib/rack/runtime.rb:18:in `call'
516
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
517
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
518
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
519
- rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
520
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
521
- railties (4.2.1) lib/rails/application.rb:164:in `call'
522
- rack (1.6.1) lib/rack/lock.rb:17:in `call'
523
- rack (1.6.1) lib/rack/content_length.rb:15:in `call'
524
- rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
525
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
526
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
527
- /Users/droptheplot/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
528
-
529
-
530
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.9ms)
531
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
532
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
533
- Rendered /Users/droptheplot/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.0ms)
534
-
535
-
536
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:16:27 +0300
537
-
538
-
539
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:16:54 +0300
540
-
541
-
542
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:18:34 +0300
543
-
544
-
545
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:18:47 +0300
546
-
547
-
548
- Started GET "/robots.txt" for ::1 at 2015-06-14 15:19:00 +0300
549
-
550
-
551
- Started GET "/robots.txt" for ::1 at 2015-06-14 16:14:00 +0300
552
-
553
-
554
- Started GET "/robots.txt" for ::1 at 2015-06-14 16:14:03 +0300