feeder 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +44 -0
  3. data/app/controllers/feeder/feeds_controller.rb +9 -0
  4. data/app/helpers/feeder/feeds_helper.rb +4 -0
  5. data/app/models/feeder/feedable_observer.rb +13 -0
  6. data/app/models/feeder/item.rb +9 -0
  7. data/app/views/feeder/feeds/index.html.erb +3 -0
  8. data/app/views/feeder/items/_item.html.erb +3 -0
  9. data/config/routes.rb +1 -0
  10. data/db/migrate/20140317150822_create_feeder_items.rb +9 -0
  11. data/db/migrate/20140317152137_add_polymorphic_feedable_reference_to_feeder_items.rb +5 -0
  12. data/lib/feeder.rb +14 -0
  13. data/lib/feeder/configuration.rb +13 -0
  14. data/lib/feeder/engine.rb +5 -0
  15. data/lib/feeder/version.rb +1 -1
  16. data/spec/controllers/feeder/feeds_controller_spec.rb +27 -0
  17. data/spec/dummy/README.md +20 -0
  18. data/spec/dummy/Rakefile +6 -0
  19. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  20. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  21. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  22. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  23. data/spec/dummy/app/models/message.rb +3 -0
  24. data/spec/dummy/app/views/feeder/types/_message.html.erb +7 -0
  25. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  26. data/spec/dummy/bin/bundle +3 -0
  27. data/spec/dummy/bin/rails +4 -0
  28. data/spec/dummy/bin/rake +4 -0
  29. data/spec/dummy/config.ru +4 -0
  30. data/spec/dummy/config/application.rb +23 -0
  31. data/spec/dummy/config/boot.rb +5 -0
  32. data/spec/dummy/config/database.yml +30 -0
  33. data/spec/dummy/config/environment.rb +5 -0
  34. data/spec/dummy/config/environments/development.rb +37 -0
  35. data/spec/dummy/config/environments/production.rb +83 -0
  36. data/spec/dummy/config/environments/test.rb +39 -0
  37. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  38. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  39. data/spec/dummy/config/initializers/feeder.rb +3 -0
  40. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  41. data/spec/dummy/config/initializers/inflections.rb +16 -0
  42. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  43. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  44. data/spec/dummy/config/initializers/session_store.rb +3 -0
  45. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  46. data/spec/dummy/config/locales/en.yml +23 -0
  47. data/spec/dummy/config/routes.rb +3 -0
  48. data/spec/dummy/db/development.sqlite3 +0 -0
  49. data/spec/dummy/db/migrate/20140317152438_create_messages.rb +10 -0
  50. data/spec/dummy/db/schema.rb +33 -0
  51. data/spec/dummy/db/test.sqlite3 +0 -0
  52. data/spec/dummy/log/development.log +2085 -0
  53. data/spec/dummy/log/test.log +7335 -0
  54. data/spec/dummy/public/404.html +67 -0
  55. data/spec/dummy/public/422.html +67 -0
  56. data/spec/dummy/public/500.html +66 -0
  57. data/spec/dummy/public/favicon.ico +0 -0
  58. data/spec/dummy/spec/factories/messages.rb +8 -0
  59. data/spec/dummy/spec/models/message_spec.rb +4 -0
  60. data/spec/dummy/tmp/cache/assets/development/sass/cc0ae3082edda8b101454f32a85acd8032e02894/feeds.css.sassc +0 -0
  61. data/spec/dummy/tmp/cache/assets/development/sprockets/2354fd765092c7362b56558785335d81 +0 -0
  62. data/spec/dummy/tmp/cache/assets/development/sprockets/26d5bae3975c391b4fdb4d27c295de66 +0 -0
  63. data/spec/dummy/tmp/cache/assets/development/sprockets/48c268542a36cf0ae2798aa622d313f3 +0 -0
  64. data/spec/dummy/tmp/cache/assets/development/sprockets/5096fdabc77430005f981db4445a7fb4 +0 -0
  65. data/spec/dummy/tmp/cache/assets/development/sprockets/61e16ab9f9dab8c9891ed097e769091a +0 -0
  66. data/spec/dummy/tmp/cache/assets/development/sprockets/62dbe8eaf571a159b5465ab66db3d743 +0 -0
  67. data/spec/dummy/tmp/cache/assets/development/sprockets/6cd04a523094cc4b9a45960b88071cf6 +0 -0
  68. data/spec/dummy/tmp/cache/assets/development/sprockets/9e0c746d57ae4025432c481d2474fbcd +0 -0
  69. data/spec/dummy/tmp/cache/assets/development/sprockets/9f66e980658cebf448ebf64ee6ad675c +0 -0
  70. data/spec/dummy/tmp/cache/assets/development/sprockets/d9e923facd879cd34681bc70a2b8c536 +0 -0
  71. data/spec/dummy/tmp/cache/assets/development/sprockets/f3f68eef7ae2cd624064b6cf137d2e9c +0 -0
  72. data/spec/dummy/tmp/cache/assets/development/sprockets/f6b968e3ffc85f344828e79f20a1d100 +0 -0
  73. data/spec/dummy/tmp/pids/server.pid +1 -0
  74. data/spec/lib/feeder/configuration_spec.rb +15 -0
  75. data/spec/lib/feeder_spec.rb +23 -0
  76. data/spec/models/feeder/item_spec.rb +19 -0
  77. data/spec/spec_helper.rb +20 -0
  78. data/spec/support/observers.rb +18 -0
  79. metadata +166 -3
  80. data/MIT-LICENSE +0 -20
@@ -0,0 +1,83 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both 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 nginx, varnish or squid.
20
+ # config.action_dispatch.rack_cache = true
21
+
22
+ # Disable Rails's static asset server (Apache or nginx will already do this).
23
+ config.serve_static_assets = false
24
+
25
+ # Compress JavaScripts and CSS.
26
+ config.assets.js_compressor = :uglifier
27
+ # config.assets.css_compressor = :sass
28
+
29
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
30
+ config.assets.compile = false
31
+
32
+ # Generate digests for assets URLs.
33
+ config.assets.digest = true
34
+
35
+ # Version of your assets, change this if you want to expire all your assets.
36
+ config.assets.version = '1.0'
37
+
38
+ # Specifies the header that your server uses for sending files.
39
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
40
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
41
+
42
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
+ # config.force_ssl = true
44
+
45
+ # Set to :debug to see everything in the log.
46
+ config.log_level = :info
47
+
48
+ # Prepend all log lines with the following tags.
49
+ # config.log_tags = [ :subdomain, :uuid ]
50
+
51
+ # Use a different logger for distributed setups.
52
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
53
+
54
+ # Use a different cache store in production.
55
+ # config.cache_store = :mem_cache_store
56
+
57
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
58
+ # config.action_controller.asset_host = "http://assets.example.com"
59
+
60
+ # Precompile additional assets.
61
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
62
+ # config.assets.precompile += %w( search.js )
63
+
64
+ # Ignore bad email addresses and do not raise email delivery errors.
65
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
66
+ # config.action_mailer.raise_delivery_errors = false
67
+
68
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
69
+ # the I18n.default_locale when a translation cannot be found).
70
+ config.i18n.fallbacks = true
71
+
72
+ # Send deprecation notices to registered listeners.
73
+ config.active_support.deprecation = :notify
74
+
75
+ # Disable automatic flushing of the log to improve performance.
76
+ # config.autoflush_log = false
77
+
78
+ # Use default logging formatter so that PID and timestamp are not suppressed.
79
+ config.log_formatter = ::Logger::Formatter.new
80
+
81
+ # Do not dump schema after migrations.
82
+ config.active_record.dump_schema_after_migration = false
83
+ end
@@ -0,0 +1,39 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Print deprecation notices to the stderr.
35
+ config.active_support.deprecation = :stderr
36
+
37
+ # Raises error for missing translations
38
+ # config.action_view.raise_on_missing_translations = true
39
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,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,3 @@
1
+ Feeder.configure do |config|
2
+ config.add_observable "Message"
3
+ end
@@ -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,5 @@
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
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = 'c9832b214b2e489d79731521da928724c08c03575b93b6f871b339fd047b0d69b84dfcab15ea1b7c94ad1d34284d333d19690a45b7a60a7d297d47edcf816de0'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ mount Feeder::Engine => "/feeder"
3
+ end
@@ -0,0 +1,10 @@
1
+ class CreateMessages < ActiveRecord::Migration
2
+ def change
3
+ create_table :messages do |t|
4
+ t.string :header
5
+ t.text :body
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,33 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20140317152438) do
15
+
16
+ create_table "feeder_items", force: true do |t|
17
+ t.datetime "published_at"
18
+ t.datetime "created_at"
19
+ t.datetime "updated_at"
20
+ t.integer "feedable_id"
21
+ t.string "feedable_type"
22
+ end
23
+
24
+ add_index "feeder_items", ["feedable_id", "feedable_type"], name: "index_feeder_items_on_feedable_id_and_feedable_type"
25
+
26
+ create_table "messages", force: true do |t|
27
+ t.string "header"
28
+ t.text "body"
29
+ t.datetime "created_at"
30
+ t.datetime "updated_at"
31
+ end
32
+
33
+ end
@@ -0,0 +1,2085 @@
1
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138)
5
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138)
6
+
7
+
8
+ Started GET "/" for 127.0.0.1 at 2014-03-17 14:54:23 +0100
9
+ Processing by Rails::WelcomeController#index as HTML
10
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.3/lib/rails/templates/rails/welcome/index.html.erb (1.0ms)
11
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
12
+
13
+
14
+ Started GET "/feeder/feeds" for 127.0.0.1 at 2014-03-17 16:07:00 +0100
15
+
16
+ ActionController::RoutingError (No route matches [GET] "/feeder/feeds"):
17
+ actionpack (4.0.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
18
+ actionpack (4.0.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
19
+ railties (4.0.3) lib/rails/rack/logger.rb:38:in `call_app'
20
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `block in call'
21
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `block in tagged'
22
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:25:in `tagged'
23
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `tagged'
24
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `call'
25
+ actionpack (4.0.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
26
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
27
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
28
+ activesupport (4.0.3) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
29
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
30
+ actionpack (4.0.3) lib/action_dispatch/middleware/static.rb:64:in `call'
31
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
32
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
33
+ railties (4.0.3) lib/rails/application.rb:97:in `call'
34
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
35
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
36
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
37
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
38
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
39
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
40
+
41
+
42
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
43
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
44
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
45
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms)
46
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.6ms)
47
+
48
+
49
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 16:07:05 +0100
50
+ Processing by Feeder::FeedsController#index as HTML
51
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (1.8ms)
52
+ Completed 500 Internal Server Error in 4ms
53
+
54
+ ActionView::Template::Error (undefined method `each' for nil:NilClass):
55
+ 1: <div class="feed_items">
56
+ 2: <%= @items.each do |item| %>
57
+ 3: <div class="feed_item">
58
+ 4: This is feed item.
59
+ 5: </div>
60
+ /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb:2:in `__home_sindre_code_hyper_public_feeder_app_views_feeder_feeds_index_html_erb___504195561014445528_70072048202860'
61
+ actionpack (4.0.3) lib/action_view/template.rb:143:in `block in render'
62
+ activesupport (4.0.3) lib/active_support/notifications.rb:161:in `instrument'
63
+ actionpack (4.0.3) lib/action_view/template.rb:141:in `render'
64
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
65
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
66
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
67
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
68
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
69
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
70
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
71
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
72
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
73
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:17:in `render'
74
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:42:in `render_template'
75
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:23:in `render'
76
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:127:in `_render_template'
77
+ actionpack (4.0.3) lib/action_controller/metal/streaming.rb:219:in `_render_template'
78
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:120:in `render_to_body'
79
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
80
+ actionpack (4.0.3) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
81
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:97:in `render'
82
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:16:in `render'
83
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
84
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
85
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
86
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `ms'
87
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
88
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
89
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
90
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:40:in `render'
91
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
92
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
93
+ actionpack (4.0.3) lib/abstract_controller/base.rb:189:in `process_action'
94
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
95
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
96
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__1258924320521063742__process_action__callbacks'
97
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
98
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
99
+ actionpack (4.0.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
100
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
101
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
102
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
103
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
104
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
105
+ actionpack (4.0.3) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
106
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
107
+ actionpack (4.0.3) lib/abstract_controller/base.rb:136:in `process'
108
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:44:in `process'
109
+ actionpack (4.0.3) lib/action_controller/metal.rb:195:in `dispatch'
110
+ actionpack (4.0.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
111
+ actionpack (4.0.3) lib/action_controller/metal.rb:231:in `block in action'
112
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `call'
113
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
114
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:48:in `call'
115
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
116
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
117
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
118
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
119
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
120
+ railties (4.0.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
121
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
122
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
123
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
124
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
125
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
126
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
127
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
128
+ actionpack (4.0.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
129
+ actionpack (4.0.3) lib/action_dispatch/middleware/flash.rb:241:in `call'
130
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
131
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
132
+ actionpack (4.0.3) lib/action_dispatch/middleware/cookies.rb:486:in `call'
133
+ activerecord (4.0.3) lib/active_record/query_cache.rb:36:in `call'
134
+ activerecord (4.0.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
135
+ activerecord (4.0.3) lib/active_record/migration.rb:369:in `call'
136
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
137
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__4605067093992279245__call__callbacks'
138
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
139
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
140
+ actionpack (4.0.3) lib/action_dispatch/middleware/reloader.rb:64:in `call'
141
+ actionpack (4.0.3) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
142
+ actionpack (4.0.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
143
+ actionpack (4.0.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
144
+ railties (4.0.3) lib/rails/rack/logger.rb:38:in `call_app'
145
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `block in call'
146
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `block in tagged'
147
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:25:in `tagged'
148
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `tagged'
149
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `call'
150
+ actionpack (4.0.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
151
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
152
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
153
+ activesupport (4.0.3) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
154
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
155
+ actionpack (4.0.3) lib/action_dispatch/middleware/static.rb:64:in `call'
156
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
157
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
158
+ railties (4.0.3) lib/rails/application.rb:97:in `call'
159
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
160
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
161
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
162
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
163
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
164
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
165
+
166
+
167
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
168
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.7ms)
169
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.5ms)
170
+
171
+
172
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 16:08:48 +0100
173
+ Processing by Feeder::FeedsController#index as HTML
174
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (0.7ms)
175
+ Completed 500 Internal Server Error in 3ms
176
+
177
+ ActionView::Template::Error (undefined method `each' for nil:NilClass):
178
+ 1: <div class="feed_items">
179
+ 2: <%= @items.each do |item| %>
180
+ 3: <div class="feed_item">
181
+ 4: This is feed item.
182
+ 5: </div>
183
+ /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb:2:in `__home_sindre_code_hyper_public_feeder_app_views_feeder_feeds_index_html_erb___504195561014445528_70072056009180'
184
+ actionpack (4.0.3) lib/action_view/template.rb:143:in `block in render'
185
+ activesupport (4.0.3) lib/active_support/notifications.rb:161:in `instrument'
186
+ actionpack (4.0.3) lib/action_view/template.rb:141:in `render'
187
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
188
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
189
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
190
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
191
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
192
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
193
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
194
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
195
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
196
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:17:in `render'
197
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:42:in `render_template'
198
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:23:in `render'
199
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:127:in `_render_template'
200
+ actionpack (4.0.3) lib/action_controller/metal/streaming.rb:219:in `_render_template'
201
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:120:in `render_to_body'
202
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
203
+ actionpack (4.0.3) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
204
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:97:in `render'
205
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:16:in `render'
206
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
207
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
208
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
209
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `ms'
210
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
211
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
212
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
213
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:40:in `render'
214
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
215
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
216
+ actionpack (4.0.3) lib/abstract_controller/base.rb:189:in `process_action'
217
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
218
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
219
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__1258924320521063742__process_action__callbacks'
220
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
221
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
222
+ actionpack (4.0.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
223
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
224
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
225
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
226
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
227
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
228
+ actionpack (4.0.3) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
229
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
230
+ actionpack (4.0.3) lib/abstract_controller/base.rb:136:in `process'
231
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:44:in `process'
232
+ actionpack (4.0.3) lib/action_controller/metal.rb:195:in `dispatch'
233
+ actionpack (4.0.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
234
+ actionpack (4.0.3) lib/action_controller/metal.rb:231:in `block in action'
235
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `call'
236
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
237
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:48:in `call'
238
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
239
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
240
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
241
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
242
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
243
+ railties (4.0.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
244
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
245
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
246
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
247
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
248
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
249
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
250
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
251
+ actionpack (4.0.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
252
+ actionpack (4.0.3) lib/action_dispatch/middleware/flash.rb:241:in `call'
253
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
254
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
255
+ actionpack (4.0.3) lib/action_dispatch/middleware/cookies.rb:486:in `call'
256
+ activerecord (4.0.3) lib/active_record/query_cache.rb:36:in `call'
257
+ activerecord (4.0.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
258
+ activerecord (4.0.3) lib/active_record/migration.rb:369:in `call'
259
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
260
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__4605067093992279245__call__callbacks'
261
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
262
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
263
+ actionpack (4.0.3) lib/action_dispatch/middleware/reloader.rb:64:in `call'
264
+ actionpack (4.0.3) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
265
+ actionpack (4.0.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
266
+ actionpack (4.0.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
267
+ railties (4.0.3) lib/rails/rack/logger.rb:38:in `call_app'
268
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `block in call'
269
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `block in tagged'
270
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:25:in `tagged'
271
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `tagged'
272
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `call'
273
+ actionpack (4.0.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
274
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
275
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
276
+ activesupport (4.0.3) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
277
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
278
+ actionpack (4.0.3) lib/action_dispatch/middleware/static.rb:64:in `call'
279
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
280
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
281
+ railties (4.0.3) lib/rails/application.rb:97:in `call'
282
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
283
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
284
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
285
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
286
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
287
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
288
+
289
+
290
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
291
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
292
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.1ms)
293
+
294
+
295
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 16:09:08 +0100
296
+ Processing by Feeder::FeedsController#index as HTML
297
+ Feeder::Item Load (0.3ms) SELECT "feeder_items".* FROM "feeder_items"
298
+ SQLite3::SQLException: no such table: feeder_items: SELECT "feeder_items".* FROM "feeder_items"
299
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (1.1ms)
300
+ Completed 500 Internal Server Error in 3ms
301
+
302
+ ActionView::Template::Error (SQLite3::SQLException: no such table: feeder_items: SELECT "feeder_items".* FROM "feeder_items"):
303
+ 1: <div class="feed_items">
304
+ 2: <%= @items.each do |item| %>
305
+ 3: <div class="feed_item">
306
+ 4: This is feed item.
307
+ 5: </div>
308
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:91:in `initialize'
309
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:91:in `new'
310
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:91:in `prepare'
311
+ activerecord (4.0.3) lib/active_record/connection_adapters/sqlite3_adapter.rb:299:in `block in exec_query'
312
+ activerecord (4.0.3) lib/active_record/connection_adapters/abstract_adapter.rb:435:in `block in log'
313
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
314
+ activerecord (4.0.3) lib/active_record/connection_adapters/abstract_adapter.rb:430:in `log'
315
+ activerecord (4.0.3) lib/active_record/connection_adapters/sqlite3_adapter.rb:295:in `exec_query'
316
+ activerecord (4.0.3) lib/active_record/connection_adapters/sqlite3_adapter.rb:507:in `select'
317
+ activerecord (4.0.3) lib/active_record/connection_adapters/abstract/database_statements.rb:24:in `select_all'
318
+ activerecord (4.0.3) lib/active_record/connection_adapters/abstract/query_cache.rb:61:in `block in select_all'
319
+ activerecord (4.0.3) lib/active_record/connection_adapters/abstract/query_cache.rb:76:in `cache_sql'
320
+ activerecord (4.0.3) lib/active_record/connection_adapters/abstract/query_cache.rb:61:in `select_all'
321
+ activerecord (4.0.3) lib/active_record/querying.rb:36:in `find_by_sql'
322
+ activerecord (4.0.3) lib/active_record/relation.rb:585:in `exec_queries'
323
+ activerecord (4.0.3) lib/active_record/relation.rb:471:in `load'
324
+ activerecord (4.0.3) lib/active_record/relation.rb:220:in `to_a'
325
+ activerecord (4.0.3) lib/active_record/relation/delegation.rb:12:in `each'
326
+ /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb:2:in `__home_sindre_code_hyper_public_feeder_app_views_feeder_feeds_index_html_erb___504195561014445528_70072056009180'
327
+ actionpack (4.0.3) lib/action_view/template.rb:143:in `block in render'
328
+ activesupport (4.0.3) lib/active_support/notifications.rb:161:in `instrument'
329
+ actionpack (4.0.3) lib/action_view/template.rb:141:in `render'
330
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
331
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
332
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
333
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
334
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
335
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
336
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
337
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
338
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
339
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:17:in `render'
340
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:42:in `render_template'
341
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:23:in `render'
342
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:127:in `_render_template'
343
+ actionpack (4.0.3) lib/action_controller/metal/streaming.rb:219:in `_render_template'
344
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:120:in `render_to_body'
345
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
346
+ actionpack (4.0.3) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
347
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:97:in `render'
348
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:16:in `render'
349
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
350
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
351
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
352
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `ms'
353
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
354
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
355
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
356
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:40:in `render'
357
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
358
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
359
+ actionpack (4.0.3) lib/abstract_controller/base.rb:189:in `process_action'
360
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
361
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
362
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__1258924320521063742__process_action__callbacks'
363
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
364
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
365
+ actionpack (4.0.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
366
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
367
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
368
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
369
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
370
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
371
+ actionpack (4.0.3) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
372
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
373
+ actionpack (4.0.3) lib/abstract_controller/base.rb:136:in `process'
374
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:44:in `process'
375
+ actionpack (4.0.3) lib/action_controller/metal.rb:195:in `dispatch'
376
+ actionpack (4.0.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
377
+ actionpack (4.0.3) lib/action_controller/metal.rb:231:in `block in action'
378
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `call'
379
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
380
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:48:in `call'
381
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
382
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
383
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
384
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
385
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
386
+ railties (4.0.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
387
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
388
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
389
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
390
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
391
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
392
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
393
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
394
+ actionpack (4.0.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
395
+ actionpack (4.0.3) lib/action_dispatch/middleware/flash.rb:241:in `call'
396
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
397
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
398
+ actionpack (4.0.3) lib/action_dispatch/middleware/cookies.rb:486:in `call'
399
+ activerecord (4.0.3) lib/active_record/query_cache.rb:36:in `call'
400
+ activerecord (4.0.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
401
+ activerecord (4.0.3) lib/active_record/migration.rb:369:in `call'
402
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
403
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__4605067093992279245__call__callbacks'
404
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
405
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
406
+ actionpack (4.0.3) lib/action_dispatch/middleware/reloader.rb:64:in `call'
407
+ actionpack (4.0.3) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
408
+ actionpack (4.0.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
409
+ actionpack (4.0.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
410
+ railties (4.0.3) lib/rails/rack/logger.rb:38:in `call_app'
411
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `block in call'
412
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `block in tagged'
413
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:25:in `tagged'
414
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `tagged'
415
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `call'
416
+ actionpack (4.0.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
417
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
418
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
419
+ activesupport (4.0.3) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
420
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
421
+ actionpack (4.0.3) lib/action_dispatch/middleware/static.rb:64:in `call'
422
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
423
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
424
+ railties (4.0.3) lib/rails/application.rb:97:in `call'
425
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
426
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
427
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
428
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
429
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
430
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
431
+
432
+
433
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
434
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
435
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.3ms)
436
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
437
+ Migrating to CreateFeederItems (20140317150822)
438
+  (0.0ms) begin transaction
439
+  (0.2ms) CREATE TABLE "feeder_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "published_at" datetime, "created_at" datetime, "updated_at" datetime) 
440
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140317150822"]]
441
+  (2.7ms) commit transaction
442
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
443
+
444
+
445
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 16:09:14 +0100
446
+ Processing by Feeder::FeedsController#index as HTML
447
+ Feeder::Item Load (0.6ms) SELECT "feeder_items".* FROM "feeder_items"
448
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (0.9ms)
449
+ Completed 500 Internal Server Error in 6ms
450
+
451
+ ActionView::Template::Error (cannot load such file -- sass
452
+ (in /home/sindre/code/hyper/public/feeder/app/assets/stylesheets/feeder/feeds.css.sass)):
453
+ 2: <html>
454
+ 3: <head>
455
+ 4: <title>Feeder</title>
456
+ 5: <%= stylesheet_link_tag "feeder/application", media: "all" %>
457
+ 6: <%= javascript_include_tag "feeder/application" %>
458
+ 7: <%= csrf_meta_tags %>
459
+ 8: </head>
460
+ activesupport (4.0.3) lib/active_support/dependencies.rb:229:in `require'
461
+ activesupport (4.0.3) lib/active_support/dependencies.rb:229:in `block in require'
462
+ activesupport (4.0.3) lib/active_support/dependencies.rb:214:in `load_dependency'
463
+ activesupport (4.0.3) lib/active_support/dependencies.rb:229:in `require'
464
+ tilt (1.4.1) lib/tilt/template.rb:144:in `require_template_library'
465
+ sprockets (2.12.0) lib/sprockets/sass_template.rb:20:in `initialize_engine'
466
+ tilt (1.4.1) lib/tilt/template.rb:56:in `initialize'
467
+ sprockets (2.12.0) lib/sprockets/context.rb:196:in `new'
468
+ sprockets (2.12.0) lib/sprockets/context.rb:196:in `block in evaluate'
469
+ sprockets (2.12.0) lib/sprockets/context.rb:194:in `each'
470
+ sprockets (2.12.0) lib/sprockets/context.rb:194:in `evaluate'
471
+ sprockets (2.12.0) lib/sprockets/processed_asset.rb:12:in `initialize'
472
+ sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
473
+ sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
474
+ sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
475
+ sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
476
+ sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
477
+ sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
478
+ sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
479
+ sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
480
+ sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
481
+ sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
482
+ sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
483
+ sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
484
+ sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
485
+ sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
486
+ sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
487
+ sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
488
+ sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
489
+ sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
490
+ sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
491
+ sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
492
+ sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
493
+ sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
494
+ sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
495
+ sprockets (2.12.0) lib/sprockets/bundled_asset.rb:16:in `initialize'
496
+ sprockets (2.12.0) lib/sprockets/base.rb:377:in `new'
497
+ sprockets (2.12.0) lib/sprockets/base.rb:377:in `build_asset'
498
+ sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
499
+ sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
500
+ sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
501
+ sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
502
+ sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
503
+ sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset'
504
+ sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]'
505
+ sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:144:in `lookup_asset_for_path'
506
+ sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:113:in `block in stylesheet_link_tag'
507
+ sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:112:in `map'
508
+ sprockets-rails (2.0.1) lib/sprockets/rails/helper.rb:112:in `stylesheet_link_tag'
509
+ /home/sindre/code/hyper/public/feeder/app/views/layouts/feeder/application.html.erb:5:in `__home_sindre_code_hyper_public_feeder_app_views_layouts_feeder_application_html_erb___811936720705529594_70072045287500'
510
+ actionpack (4.0.3) lib/action_view/template.rb:143:in `block in render'
511
+ activesupport (4.0.3) lib/active_support/notifications.rb:161:in `instrument'
512
+ actionpack (4.0.3) lib/action_view/template.rb:141:in `render'
513
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
514
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
515
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:17:in `render'
516
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:42:in `render_template'
517
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:23:in `render'
518
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:127:in `_render_template'
519
+ actionpack (4.0.3) lib/action_controller/metal/streaming.rb:219:in `_render_template'
520
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:120:in `render_to_body'
521
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
522
+ actionpack (4.0.3) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
523
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:97:in `render'
524
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:16:in `render'
525
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
526
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
527
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
528
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `ms'
529
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
530
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
531
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
532
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:40:in `render'
533
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
534
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
535
+ actionpack (4.0.3) lib/abstract_controller/base.rb:189:in `process_action'
536
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
537
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
538
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__1258924320521063742__process_action__callbacks'
539
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
540
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
541
+ actionpack (4.0.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
542
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
543
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
544
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
545
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
546
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
547
+ actionpack (4.0.3) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
548
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
549
+ actionpack (4.0.3) lib/abstract_controller/base.rb:136:in `process'
550
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:44:in `process'
551
+ actionpack (4.0.3) lib/action_controller/metal.rb:195:in `dispatch'
552
+ actionpack (4.0.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
553
+ actionpack (4.0.3) lib/action_controller/metal.rb:231:in `block in action'
554
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `call'
555
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
556
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:48:in `call'
557
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
558
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
559
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
560
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
561
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
562
+ railties (4.0.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
563
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
564
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
565
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
566
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
567
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
568
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
569
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
570
+ actionpack (4.0.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
571
+ actionpack (4.0.3) lib/action_dispatch/middleware/flash.rb:241:in `call'
572
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
573
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
574
+ actionpack (4.0.3) lib/action_dispatch/middleware/cookies.rb:486:in `call'
575
+ activerecord (4.0.3) lib/active_record/query_cache.rb:36:in `call'
576
+ activerecord (4.0.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
577
+ activerecord (4.0.3) lib/active_record/migration.rb:369:in `call'
578
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
579
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__4605067093992279245__call__callbacks'
580
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
581
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
582
+ actionpack (4.0.3) lib/action_dispatch/middleware/reloader.rb:64:in `call'
583
+ actionpack (4.0.3) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
584
+ actionpack (4.0.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
585
+ actionpack (4.0.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
586
+ railties (4.0.3) lib/rails/rack/logger.rb:38:in `call_app'
587
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `block in call'
588
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `block in tagged'
589
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:25:in `tagged'
590
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `tagged'
591
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `call'
592
+ actionpack (4.0.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
593
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
594
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
595
+ activesupport (4.0.3) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
596
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
597
+ actionpack (4.0.3) lib/action_dispatch/middleware/static.rb:64:in `call'
598
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
599
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
600
+ railties (4.0.3) lib/rails/application.rb:97:in `call'
601
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
602
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
603
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
604
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
605
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
606
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
607
+
608
+
609
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
610
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
611
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.6ms)
612
+
613
+
614
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 16:15:34 +0100
615
+ Processing by Feeder::FeedsController#index as HTML
616
+ Feeder::Item Load (0.7ms) SELECT "feeder_items".* FROM "feeder_items"
617
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (5.3ms)
618
+ Completed 200 OK in 168ms (Views: 166.6ms | ActiveRecord: 0.7ms)
619
+
620
+
621
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 16:15:34 +0100
622
+
623
+
624
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 16:15:34 +0100
625
+
626
+
627
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 16:15:34 +0100
628
+
629
+
630
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 16:15:34 +0100
631
+
632
+
633
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 16:15:51 +0100
634
+ Processing by Feeder::FeedsController#index as HTML
635
+ Feeder::Item Load (0.2ms) SELECT "feeder_items".* FROM "feeder_items"
636
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (0.9ms)
637
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.2ms)
638
+
639
+
640
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 16:15:51 +0100
641
+
642
+
643
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 16:15:51 +0100
644
+
645
+
646
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 16:15:51 +0100
647
+
648
+
649
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 16:15:51 +0100
650
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
651
+ Migrating to AddPolymorphicFeedableReferenceToFeederItems (20140317152137)
652
+  (0.0ms) begin transaction
653
+  (0.2ms) ALTER TABLE "feeder_items" ADD "feedable_id" integer
654
+  (0.1ms) ALTER TABLE "feeder_items" ADD "feedable_type" varchar(255)
655
+  (0.1ms) CREATE INDEX "index_feeder_items_on_feedable_id_and_feedable_type" ON "feeder_items" ("feedable_id", "feedable_type")
656
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140317152137"]]
657
+  (3.5ms) commit transaction
658
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
659
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
660
+ Migrating to CreateMessages (20140317152438)
661
+  (0.0ms) begin transaction
662
+  (0.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "header" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
663
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140317152438"]]
664
+  (4.1ms) commit transaction
665
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
666
+  (0.1ms) begin transaction
667
+ SQL (4.1ms) INSERT INTO "messages" ("body", "created_at", "header", "updated_at") VALUES (?, ?, ?, ?) [["body", "This is the first test message."], ["created_at", Mon, 17 Mar 2014 15:26:29 UTC +00:00], ["header", "Test message #1"], ["updated_at", Mon, 17 Mar 2014 15:26:29 UTC +00:00]]
668
+  (2.8ms) commit transaction
669
+ Message Load (0.2ms) SELECT "messages".* FROM "messages" ORDER BY "messages"."id" ASC LIMIT 1
670
+ Message Load (0.1ms) SELECT "messages".* FROM "messages"
671
+ Message Load (0.1ms) SELECT "messages".* FROM "messages" ORDER BY "messages"."id" ASC LIMIT 1
672
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."id" ASC LIMIT 1
673
+ Message Load (0.1ms) SELECT "messages".* FROM "messages" ORDER BY "messages"."id" ASC LIMIT 1
674
+  (0.1ms) begin transaction
675
+ SQL (1.5ms) INSERT INTO "feeder_items" ("created_at", "feedable_id", "feedable_type", "published_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 17 Mar 2014 15:30:41 UTC +00:00], ["feedable_id", 1], ["feedable_type", "Message"], ["published_at", Mon, 17 Mar 2014 15:30:37 UTC +00:00], ["updated_at", Mon, 17 Mar 2014 15:30:41 UTC +00:00]]
676
+  (4.1ms) commit transaction
677
+
678
+
679
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 16:30:44 +0100
680
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
681
+ Processing by Feeder::FeedsController#index as HTML
682
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items"
683
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (3.0ms)
684
+ Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.2ms)
685
+
686
+
687
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 16:30:44 +0100
688
+
689
+
690
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 16:30:44 +0100
691
+
692
+
693
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 16:30:44 +0100
694
+
695
+
696
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 16:30:44 +0100
697
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
698
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
699
+ Migrating to CreateMessages (20140317152438)
700
+  (0.0ms) begin transaction
701
+  (0.2ms) DROP TABLE "messages"
702
+ SQL (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20140317152438'
703
+  (2.9ms) commit transaction
704
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
705
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
706
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
707
+ Migrating to AddPolymorphicFeedableReferenceToFeederItems (20140317152137)
708
+  (0.0ms) begin transaction
709
+  (0.2ms) CREATE TEMPORARY TABLE "afeeder_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "published_at" datetime, "created_at" datetime, "updated_at" datetime, "feedable_id" integer, "feedable_type" varchar(255))
710
+  (0.1ms) CREATE INDEX "tindex_afeeder_items_on_feedable_id_and_feedable_type" ON "afeeder_items" ("feedable_id", "feedable_type")
711
+  (0.0ms) SELECT * FROM "feeder_items"
712
+  (0.0ms) INSERT INTO "afeeder_items" ("id","published_at","created_at","updated_at","feedable_id","feedable_type") VALUES (1, '2014-03-17 15:30:37.132392', '2014-03-17 15:30:41.408319', '2014-03-17 15:30:41.408319', 1, 'Message')
713
+  (0.2ms) DROP TABLE "feeder_items"
714
+  (0.1ms) CREATE TABLE "feeder_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "published_at" datetime, "created_at" datetime, "updated_at" datetime, "feedable_type" varchar(255)) 
715
+  (0.1ms) CREATE INDEX "index_feeder_items_on_feedable_id_and_feedable_type" ON "feeder_items" ("feedable_type")
716
+  (0.0ms) SELECT * FROM "afeeder_items"
717
+  (0.1ms) INSERT INTO "feeder_items" ("id","published_at","created_at","updated_at","feedable_type") VALUES (1, '2014-03-17 15:30:37.132392', '2014-03-17 15:30:41.408319', '2014-03-17 15:30:41.408319', 'Message')
718
+  (0.1ms) DROP TABLE "afeeder_items"
719
+  (0.1ms) CREATE TEMPORARY TABLE "afeeder_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "published_at" datetime, "created_at" datetime, "updated_at" datetime, "feedable_type" varchar(255))
720
+  (0.1ms) CREATE INDEX "tindex_afeeder_items_on_feedable_id_and_feedable_type" ON "afeeder_items" ("feedable_type")
721
+  (0.0ms) SELECT * FROM "feeder_items"
722
+  (0.0ms) INSERT INTO "afeeder_items" ("id","published_at","created_at","updated_at","feedable_type") VALUES (1, '2014-03-17 15:30:37.132392', '2014-03-17 15:30:41.408319', '2014-03-17 15:30:41.408319', 'Message')
723
+  (0.1ms) DROP TABLE "feeder_items"
724
+  (0.1ms) CREATE TABLE "feeder_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "published_at" datetime, "created_at" datetime, "updated_at" datetime) 
725
+  (0.0ms) SELECT * FROM "afeeder_items"
726
+  (0.0ms) INSERT INTO "feeder_items" ("id","published_at","created_at","updated_at") VALUES (1, '2014-03-17 15:30:37.132392', '2014-03-17 15:30:41.408319', '2014-03-17 15:30:41.408319')
727
+  (0.1ms) DROP TABLE "afeeder_items"
728
+ SQL (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20140317152137'
729
+  (3.4ms) commit transaction
730
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
731
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
732
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
733
+ Migrating to CreateFeederItems (20140317150822)
734
+  (0.0ms) begin transaction
735
+  (0.2ms) DROP TABLE "feeder_items"
736
+ SQL (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20140317150822'
737
+  (4.2ms) commit transaction
738
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
739
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
740
+ Migrating to CreateFeederItems (20140317150822)
741
+  (0.0ms) begin transaction
742
+  (0.2ms) CREATE TABLE "feeder_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "published_at" datetime, "created_at" datetime, "updated_at" datetime) 
743
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140317150822"]]
744
+  (3.9ms) commit transaction
745
+ Migrating to AddPolymorphicFeedableReferenceToFeederItems (20140317152137)
746
+  (0.0ms) begin transaction
747
+  (0.2ms) ALTER TABLE "feeder_items" ADD "feedable_id" integer
748
+  (0.1ms) ALTER TABLE "feeder_items" ADD "feedable_type" varchar(255)
749
+  (0.1ms) CREATE INDEX "index_feeder_items_on_feedable_id_and_feedable_type" ON "feeder_items" ("feedable_id", "feedable_type")
750
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140317152137"]]
751
+  (2.1ms) commit transaction
752
+ Migrating to CreateMessages (20140317152438)
753
+  (0.0ms) begin transaction
754
+  (0.1ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "header" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
755
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140317152438"]]
756
+  (2.3ms) commit transaction
757
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
758
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
759
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
760
+ Migrating to CreateMessages (20140317152438)
761
+  (0.0ms) begin transaction
762
+  (0.2ms) DROP TABLE "messages"
763
+ SQL (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20140317152438'
764
+  (3.3ms) commit transaction
765
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
766
+  (0.1ms) SELECT version FROM schema_migrations
767
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
768
+ Migrating to CreateMessages (20140317152438)
769
+  (0.0ms) begin transaction
770
+  (0.2ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "header" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
771
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140317152438"]]
772
+  (3.8ms) commit transaction
773
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
774
+
775
+
776
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 16:48:04 +0100
777
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
778
+ Processing by Feeder::FeedsController#index as HTML
779
+ ERROR: compiling __home_sindre_code_hyper_public_feeder_app_views_feeder_feeds_index_html_erb___2723427387737092824_69956260531560 RAISED /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb:5: syntax error, unexpected '<', expecting ')'
780
+ </div>
781
+ ^
782
+ /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb:7: unknown regexp options - dv
783
+ unmatched close parenthesis: /div>
784
+ <% end );@output_buffer.safe_append='
785
+ </i
786
+ /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb:8: unterminated string meets end of file
787
+ /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb:8: syntax error, unexpected end-of-input, expecting ')'
788
+ Function body: def __home_sindre_code_hyper_public_feeder_app_views_feeder_feeds_index_html_erb___2723427387737092824_69956260531560(local_assigns, output_buffer)
789
+ _old_virtual_path, @virtual_path = @virtual_path, "feeder/feeds/index";_old_output_buffer = @output_buffer;;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.safe_append='<div class="feed_items">
790
+ '; @items.each do |item|
791
+ @output_buffer.safe_append=' <div class="feed_item">
792
+ ';@output_buffer.append=( render "feeder/partials/#{item.type}"
793
+ </div>
794
+ <% end );@output_buffer.safe_append='
795
+ </div>
796
+ ';@output_buffer.to_s
797
+ ensure
798
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
799
+ end
800
+
801
+ Backtrace: /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/template.rb:299:in `module_eval'
802
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/template.rb:299:in `compile'
803
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/template.rb:248:in `block in compile!'
804
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/template.rb:236:in `synchronize'
805
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/template.rb:236:in `compile!'
806
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/template.rb:142:in `block in render'
807
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/notifications.rb:161:in `instrument'
808
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/template.rb:141:in `render'
809
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
810
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
811
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/notifications.rb:159:in `block in instrument'
812
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
813
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/notifications.rb:159:in `instrument'
814
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
815
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
816
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
817
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/renderer/template_renderer.rb:47:in `render_template'
818
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/renderer/template_renderer.rb:17:in `render'
819
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/renderer/renderer.rb:42:in `render_template'
820
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_view/renderer/renderer.rb:23:in `render'
821
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/abstract_controller/rendering.rb:127:in `_render_template'
822
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/streaming.rb:219:in `_render_template'
823
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/abstract_controller/rendering.rb:120:in `render_to_body'
824
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/rendering.rb:33:in `render_to_body'
825
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/renderers.rb:26:in `render_to_body'
826
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/abstract_controller/rendering.rb:97:in `render'
827
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/rendering.rb:16:in `render'
828
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
829
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
830
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
831
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/core_ext/benchmark.rb:12:in `ms'
832
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/instrumentation.rb:41:in `block in render'
833
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
834
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activerecord-4.0.3/lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
835
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/instrumentation.rb:40:in `render'
836
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
837
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
838
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/abstract_controller/base.rb:189:in `process_action'
839
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/rendering.rb:10:in `process_action'
840
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
841
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/callbacks.rb:373:in `_run__4587871063849352595__process_action__callbacks'
842
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/callbacks.rb:80:in `run_callbacks'
843
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/abstract_controller/callbacks.rb:17:in `process_action'
844
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/rescue.rb:29:in `process_action'
845
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
846
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/notifications.rb:159:in `block in instrument'
847
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
848
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/notifications.rb:159:in `instrument'
849
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/instrumentation.rb:30:in `process_action'
850
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
851
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activerecord-4.0.3/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
852
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/abstract_controller/base.rb:136:in `process'
853
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/abstract_controller/rendering.rb:44:in `process'
854
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal.rb:195:in `dispatch'
855
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
856
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_controller/metal.rb:231:in `block in action'
857
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/routing/route_set.rb:80:in `call'
858
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
859
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/routing/route_set.rb:48:in `call'
860
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/journey/router.rb:71:in `block in call'
861
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/journey/router.rb:59:in `each'
862
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/journey/router.rb:59:in `call'
863
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/routing/route_set.rb:680:in `call'
864
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.3/lib/rails/engine.rb:511:in `call'
865
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.3/lib/rails/railtie/configurable.rb:30:in `method_missing'
866
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/journey/router.rb:71:in `block in call'
867
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/journey/router.rb:59:in `each'
868
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/journey/router.rb:59:in `call'
869
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/routing/route_set.rb:680:in `call'
870
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/rack-1.5.2/lib/rack/etag.rb:23:in `call'
871
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/rack-1.5.2/lib/rack/conditionalget.rb:25:in `call'
872
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
873
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/params_parser.rb:27:in `call'
874
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/flash.rb:241:in `call'
875
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:225:in `context'
876
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:220:in `call'
877
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/cookies.rb:486:in `call'
878
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activerecord-4.0.3/lib/active_record/query_cache.rb:36:in `call'
879
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activerecord-4.0.3/lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
880
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activerecord-4.0.3/lib/active_record/migration.rb:369:in `call'
881
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
882
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/callbacks.rb:373:in `_run__3842386590705825355__call__callbacks'
883
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/callbacks.rb:80:in `run_callbacks'
884
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
885
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/reloader.rb:64:in `call'
886
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
887
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
888
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
889
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.3/lib/rails/rack/logger.rb:38:in `call_app'
890
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.3/lib/rails/rack/logger.rb:20:in `block in call'
891
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/tagged_logging.rb:67:in `block in tagged'
892
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/tagged_logging.rb:25:in `tagged'
893
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/tagged_logging.rb:67:in `tagged'
894
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.3/lib/rails/rack/logger.rb:20:in `call'
895
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/request_id.rb:21:in `call'
896
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
897
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/rack-1.5.2/lib/rack/runtime.rb:17:in `call'
898
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/activesupport-4.0.3/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
899
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/rack-1.5.2/lib/rack/lock.rb:17:in `call'
900
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/static.rb:64:in `call'
901
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/rack-1.5.2/lib/rack/sendfile.rb:112:in `call'
902
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.3/lib/rails/engine.rb:511:in `call'
903
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.3/lib/rails/application.rb:97:in `call'
904
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/rack-1.5.2/lib/rack/lock.rb:17:in `call'
905
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/rack-1.5.2/lib/rack/content_length.rb:14:in `call'
906
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/rack-1.5.2/lib/rack/handler/webrick.rb:60:in `service'
907
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
908
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
909
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
910
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (1.6ms)
911
+ Completed 500 Internal Server Error in 4ms
912
+
913
+ ActionView::Template::Error (/home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb:5: syntax error, unexpected '<', expecting ')'
914
+ </div>
915
+ ^
916
+ /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb:7: unknown regexp options - dv
917
+ unmatched close parenthesis: /div>
918
+ <% end );@output_buffer.safe_append='
919
+ </i
920
+ /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb:8: unterminated string meets end of file
921
+ /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb:8: syntax error, unexpected end-of-input, expecting ')'):
922
+ 2: <% @items.each do |item| %>
923
+ 3: <div class="feed_item">
924
+ 4: <%= render "feeder/partials/#{item.type}"
925
+ 5: </div>
926
+ 6: <% end %>
927
+ 7: </div>
928
+ actionpack (4.0.3) lib/action_view/template.rb:299:in `module_eval'
929
+ actionpack (4.0.3) lib/action_view/template.rb:299:in `compile'
930
+ actionpack (4.0.3) lib/action_view/template.rb:248:in `block in compile!'
931
+ actionpack (4.0.3) lib/action_view/template.rb:236:in `synchronize'
932
+ actionpack (4.0.3) lib/action_view/template.rb:236:in `compile!'
933
+ actionpack (4.0.3) lib/action_view/template.rb:142:in `block in render'
934
+ activesupport (4.0.3) lib/active_support/notifications.rb:161:in `instrument'
935
+ actionpack (4.0.3) lib/action_view/template.rb:141:in `render'
936
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
937
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
938
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
939
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
940
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
941
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
942
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
943
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
944
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
945
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:17:in `render'
946
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:42:in `render_template'
947
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:23:in `render'
948
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:127:in `_render_template'
949
+ actionpack (4.0.3) lib/action_controller/metal/streaming.rb:219:in `_render_template'
950
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:120:in `render_to_body'
951
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
952
+ actionpack (4.0.3) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
953
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:97:in `render'
954
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:16:in `render'
955
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
956
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
957
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
958
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `ms'
959
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
960
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
961
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
962
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:40:in `render'
963
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
964
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
965
+ actionpack (4.0.3) lib/abstract_controller/base.rb:189:in `process_action'
966
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
967
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
968
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__4587871063849352595__process_action__callbacks'
969
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
970
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
971
+ actionpack (4.0.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
972
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
973
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
974
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
975
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
976
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
977
+ actionpack (4.0.3) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
978
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
979
+ actionpack (4.0.3) lib/abstract_controller/base.rb:136:in `process'
980
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:44:in `process'
981
+ actionpack (4.0.3) lib/action_controller/metal.rb:195:in `dispatch'
982
+ actionpack (4.0.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
983
+ actionpack (4.0.3) lib/action_controller/metal.rb:231:in `block in action'
984
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `call'
985
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
986
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:48:in `call'
987
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
988
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
989
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
990
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
991
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
992
+ railties (4.0.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
993
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
994
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
995
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
996
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
997
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
998
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
999
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1000
+ actionpack (4.0.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1001
+ actionpack (4.0.3) lib/action_dispatch/middleware/flash.rb:241:in `call'
1002
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1003
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1004
+ actionpack (4.0.3) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1005
+ activerecord (4.0.3) lib/active_record/query_cache.rb:36:in `call'
1006
+ activerecord (4.0.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1007
+ activerecord (4.0.3) lib/active_record/migration.rb:369:in `call'
1008
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1009
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__3842386590705825355__call__callbacks'
1010
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
1011
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1012
+ actionpack (4.0.3) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1013
+ actionpack (4.0.3) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1014
+ actionpack (4.0.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1015
+ actionpack (4.0.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1016
+ railties (4.0.3) lib/rails/rack/logger.rb:38:in `call_app'
1017
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `block in call'
1018
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1019
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:25:in `tagged'
1020
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `tagged'
1021
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `call'
1022
+ actionpack (4.0.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1023
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1024
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1025
+ activesupport (4.0.3) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1026
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1027
+ actionpack (4.0.3) lib/action_dispatch/middleware/static.rb:64:in `call'
1028
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1029
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
1030
+ railties (4.0.3) lib/rails/application.rb:97:in `call'
1031
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1032
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1033
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1034
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1035
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1036
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1037
+
1038
+
1039
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
1040
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1041
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms)
1042
+
1043
+
1044
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 16:48:11 +0100
1045
+ Processing by Feeder::FeedsController#index as HTML
1046
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items"
1047
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (0.7ms)
1048
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
1049
+
1050
+
1051
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 16:48:11 +0100
1052
+
1053
+
1054
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 16:48:11 +0100
1055
+
1056
+
1057
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 16:48:11 +0100
1058
+
1059
+
1060
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 16:48:11 +0100
1061
+
1062
+
1063
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 16:48:49 +0100
1064
+ Processing by Feeder::FeedsController#index as HTML
1065
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items"
1066
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (0.7ms)
1067
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.1ms)
1068
+
1069
+
1070
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 16:48:49 +0100
1071
+
1072
+
1073
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 16:48:49 +0100
1074
+
1075
+
1076
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 16:48:49 +0100
1077
+
1078
+
1079
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 16:48:49 +0100
1080
+
1081
+
1082
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 16:48:50 +0100
1083
+ Processing by Feeder::FeedsController#index as HTML
1084
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items"
1085
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (0.5ms)
1086
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.1ms)
1087
+
1088
+
1089
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 16:48:50 +0100
1090
+
1091
+
1092
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 16:48:50 +0100
1093
+
1094
+
1095
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 16:48:50 +0100
1096
+
1097
+
1098
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 16:48:50 +0100
1099
+ Feeder::Item Load (0.9ms) SELECT "feeder_items".* FROM "feeder_items"
1100
+ Message Load (0.1ms) SELECT "messages".* FROM "messages"
1101
+  (0.1ms) begin transaction
1102
+ SQL (2.0ms) INSERT INTO "messages" ("body", "created_at", "header", "updated_at") VALUES (?, ?, ?, ?) [["body", "This is the first test message."], ["created_at", Mon, 17 Mar 2014 15:49:12 UTC +00:00], ["header", "Test message #1"], ["updated_at", Mon, 17 Mar 2014 15:49:12 UTC +00:00]]
1103
+  (3.8ms) commit transaction
1104
+  (0.0ms) begin transaction
1105
+ SQL (0.3ms) INSERT INTO "feeder_items" ("created_at", "feedable_id", "feedable_type", "published_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 17 Mar 2014 15:49:28 UTC +00:00], ["feedable_id", 1], ["feedable_type", "Message"], ["published_at", Mon, 17 Mar 2014 15:49:28 UTC +00:00], ["updated_at", Mon, 17 Mar 2014 15:49:28 UTC +00:00]]
1106
+  (2.7ms) commit transaction
1107
+
1108
+
1109
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 16:49:29 +0100
1110
+ Processing by Feeder::FeedsController#index as HTML
1111
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items"
1112
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (6.3ms)
1113
+ Completed 500 Internal Server Error in 8ms
1114
+
1115
+ ActionView::Template::Error (undefined method `type' for #<Feeder::Item:0x007f3fec0d0bc8>):
1116
+ 1: <div class="feed_items">
1117
+ 2: <% @items.each do |item| %>
1118
+ 3: <div class="feed_item">
1119
+ 4: <%= render "feeder/partials/#{item.type}" %>
1120
+ 5: </div>
1121
+ 6: <% end %>
1122
+ 7: </div>
1123
+ activemodel (4.0.3) lib/active_model/attribute_methods.rb:439:in `method_missing'
1124
+ activerecord (4.0.3) lib/active_record/attribute_methods.rb:155:in `method_missing'
1125
+ /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb:4:in `block in __home_sindre_code_hyper_public_feeder_app_views_feeder_feeds_index_html_erb___2723427387737092824_69956260014140'
1126
+ activerecord (4.0.3) lib/active_record/relation/delegation.rb:13:in `each'
1127
+ activerecord (4.0.3) lib/active_record/relation/delegation.rb:13:in `each'
1128
+ /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb:2:in `__home_sindre_code_hyper_public_feeder_app_views_feeder_feeds_index_html_erb___2723427387737092824_69956260014140'
1129
+ actionpack (4.0.3) lib/action_view/template.rb:143:in `block in render'
1130
+ activesupport (4.0.3) lib/active_support/notifications.rb:161:in `instrument'
1131
+ actionpack (4.0.3) lib/action_view/template.rb:141:in `render'
1132
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
1133
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1134
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
1135
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1136
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
1137
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1138
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
1139
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
1140
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
1141
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:17:in `render'
1142
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:42:in `render_template'
1143
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:23:in `render'
1144
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:127:in `_render_template'
1145
+ actionpack (4.0.3) lib/action_controller/metal/streaming.rb:219:in `_render_template'
1146
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:120:in `render_to_body'
1147
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
1148
+ actionpack (4.0.3) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
1149
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:97:in `render'
1150
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:16:in `render'
1151
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1152
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1153
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
1154
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1155
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1156
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1157
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1158
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:40:in `render'
1159
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1160
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1161
+ actionpack (4.0.3) lib/abstract_controller/base.rb:189:in `process_action'
1162
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1163
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1164
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__4587871063849352595__process_action__callbacks'
1165
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
1166
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1167
+ actionpack (4.0.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1168
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1169
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
1170
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1171
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
1172
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1173
+ actionpack (4.0.3) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1174
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1175
+ actionpack (4.0.3) lib/abstract_controller/base.rb:136:in `process'
1176
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:44:in `process'
1177
+ actionpack (4.0.3) lib/action_controller/metal.rb:195:in `dispatch'
1178
+ actionpack (4.0.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1179
+ actionpack (4.0.3) lib/action_controller/metal.rb:231:in `block in action'
1180
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `call'
1181
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1182
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:48:in `call'
1183
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
1184
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
1185
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
1186
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
1187
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
1188
+ railties (4.0.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
1189
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
1190
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
1191
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
1192
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
1193
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1194
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1195
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1196
+ actionpack (4.0.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1197
+ actionpack (4.0.3) lib/action_dispatch/middleware/flash.rb:241:in `call'
1198
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1199
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1200
+ actionpack (4.0.3) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1201
+ activerecord (4.0.3) lib/active_record/query_cache.rb:36:in `call'
1202
+ activerecord (4.0.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1203
+ activerecord (4.0.3) lib/active_record/migration.rb:369:in `call'
1204
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1205
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__3842386590705825355__call__callbacks'
1206
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
1207
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1208
+ actionpack (4.0.3) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1209
+ actionpack (4.0.3) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1210
+ actionpack (4.0.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1211
+ actionpack (4.0.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1212
+ railties (4.0.3) lib/rails/rack/logger.rb:38:in `call_app'
1213
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `block in call'
1214
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1215
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:25:in `tagged'
1216
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `tagged'
1217
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `call'
1218
+ actionpack (4.0.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1219
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1220
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1221
+ activesupport (4.0.3) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1222
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1223
+ actionpack (4.0.3) lib/action_dispatch/middleware/static.rb:64:in `call'
1224
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1225
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
1226
+ railties (4.0.3) lib/rails/application.rb:97:in `call'
1227
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1228
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1229
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1230
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1231
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1232
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1233
+
1234
+
1235
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
1236
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1237
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.3ms)
1238
+
1239
+
1240
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 16:52:34 +0100
1241
+ Processing by Feeder::FeedsController#index as HTML
1242
+ Feeder::Item Load (0.2ms) SELECT "feeder_items".* FROM "feeder_items"
1243
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/partials/_message.html.erb (0.2ms)
1244
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (5.5ms)
1245
+ Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.4ms)
1246
+
1247
+
1248
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 16:52:34 +0100
1249
+
1250
+
1251
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 16:52:34 +0100
1252
+
1253
+
1254
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 16:52:34 +0100
1255
+
1256
+
1257
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 16:52:34 +0100
1258
+
1259
+
1260
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:19:21 +0100
1261
+ Processing by Feeder::FeedsController#index as HTML
1262
+ Feeder::Item Load (0.2ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1263
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/partials/_message.html.erb (0.0ms)
1264
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (3.9ms)
1265
+ Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms)
1266
+
1267
+
1268
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 17:19:21 +0100
1269
+
1270
+
1271
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 17:19:21 +0100
1272
+
1273
+
1274
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 17:19:21 +0100
1275
+
1276
+
1277
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 17:19:21 +0100
1278
+
1279
+
1280
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:20:45 +0100
1281
+ Processing by Feeder::FeedsController#index as HTML
1282
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1283
+ Rendered feeder/partials/_message.html.erb (0.3ms)
1284
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (1.1ms)
1285
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.1ms)
1286
+
1287
+
1288
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 17:20:45 +0100
1289
+
1290
+
1291
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 17:20:45 +0100
1292
+
1293
+
1294
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 17:20:45 +0100
1295
+
1296
+
1297
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 17:20:45 +0100
1298
+
1299
+
1300
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:20:45 +0100
1301
+ Processing by Feeder::FeedsController#index as HTML
1302
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1303
+ Rendered feeder/partials/_message.html.erb (0.0ms)
1304
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (0.7ms)
1305
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.1ms)
1306
+
1307
+
1308
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 17:20:45 +0100
1309
+
1310
+
1311
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 17:20:45 +0100
1312
+
1313
+
1314
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 17:20:45 +0100
1315
+
1316
+
1317
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 17:20:45 +0100
1318
+
1319
+
1320
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:21:11 +0100
1321
+ Processing by Feeder::FeedsController#index as HTML
1322
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1323
+ Rendered feeder/partials/_message.html.erb (4.1ms)
1324
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (4.8ms)
1325
+ Completed 500 Internal Server Error in 6ms
1326
+
1327
+ ActionView::Template::Error (undefined local variable or method `message' for #<#<Class:0x007f400bc95048>:0x007f3ff0167128>):
1328
+ 1: <%= message.header %>
1329
+ app/views/feeder/partials/_message.html.erb:1:in `_app_views_feeder_partials__message_html_erb__3752603417132771838_69956293884040'
1330
+
1331
+
1332
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
1333
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
1334
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.1ms)
1335
+
1336
+
1337
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:21:21 +0100
1338
+ Processing by Feeder::FeedsController#index as HTML
1339
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1340
+ Rendered feeder/partials/_message.html.erb (4.0ms)
1341
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (4.7ms)
1342
+ Completed 500 Internal Server Error in 6ms
1343
+
1344
+ ActionView::Template::Error (undefined local variable or method `item' for #<#<Class:0x007f400bc95048>:0x007f3ff4297990>):
1345
+ 1: <%= item.header %>
1346
+ app/views/feeder/partials/_message.html.erb:1:in `_app_views_feeder_partials__message_html_erb__3752603417132771838_69956328078480'
1347
+
1348
+
1349
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
1350
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1351
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.1ms)
1352
+
1353
+
1354
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:22:13 +0100
1355
+ Processing by Feeder::FeedsController#index as HTML
1356
+ Feeder::Item Load (0.2ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1357
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (1.6ms)
1358
+ Completed 500 Internal Server Error in 3ms
1359
+
1360
+ ActionView::Template::Error (Missing partial feeder/items/item with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
1361
+ * "/home/sindre/code/hyper/public/feeder/spec/dummy/app/views"
1362
+ * "/home/sindre/code/hyper/public/feeder/app/views"
1363
+ ):
1364
+ 1: <div class="feed_items">
1365
+ 2: <%= render @items %>
1366
+ 3: </div>
1367
+ actionpack (4.0.3) lib/action_view/path_set.rb:46:in `find'
1368
+ actionpack (4.0.3) lib/action_view/lookup_context.rb:122:in `find'
1369
+ actionpack (4.0.3) lib/action_view/renderer/partial_renderer.rb:383:in `find_template'
1370
+ actionpack (4.0.3) lib/action_view/renderer/partial_renderer.rb:377:in `find_partial'
1371
+ actionpack (4.0.3) lib/action_view/renderer/partial_renderer.rb:263:in `render'
1372
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:47:in `render_partial'
1373
+ actionpack (4.0.3) lib/action_view/helpers/rendering_helper.rb:27:in `render'
1374
+ /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb:2:in `__home_sindre_code_hyper_public_feeder_app_views_feeder_feeds_index_html_erb___2723427387737092824_69956261175760'
1375
+ actionpack (4.0.3) lib/action_view/template.rb:143:in `block in render'
1376
+ activesupport (4.0.3) lib/active_support/notifications.rb:161:in `instrument'
1377
+ actionpack (4.0.3) lib/action_view/template.rb:141:in `render'
1378
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
1379
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1380
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
1381
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1382
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
1383
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1384
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
1385
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
1386
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
1387
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:17:in `render'
1388
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:42:in `render_template'
1389
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:23:in `render'
1390
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:127:in `_render_template'
1391
+ actionpack (4.0.3) lib/action_controller/metal/streaming.rb:219:in `_render_template'
1392
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:120:in `render_to_body'
1393
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
1394
+ actionpack (4.0.3) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
1395
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:97:in `render'
1396
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:16:in `render'
1397
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1398
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1399
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
1400
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1401
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1402
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1403
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1404
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:40:in `render'
1405
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1406
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1407
+ actionpack (4.0.3) lib/abstract_controller/base.rb:189:in `process_action'
1408
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1409
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1410
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__4587871063849352595__process_action__callbacks'
1411
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
1412
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1413
+ actionpack (4.0.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1414
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1415
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
1416
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1417
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
1418
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1419
+ actionpack (4.0.3) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1420
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1421
+ actionpack (4.0.3) lib/abstract_controller/base.rb:136:in `process'
1422
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:44:in `process'
1423
+ actionpack (4.0.3) lib/action_controller/metal.rb:195:in `dispatch'
1424
+ actionpack (4.0.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1425
+ actionpack (4.0.3) lib/action_controller/metal.rb:231:in `block in action'
1426
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `call'
1427
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1428
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:48:in `call'
1429
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
1430
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
1431
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
1432
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
1433
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
1434
+ railties (4.0.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
1435
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
1436
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
1437
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
1438
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
1439
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1440
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1441
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1442
+ actionpack (4.0.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1443
+ actionpack (4.0.3) lib/action_dispatch/middleware/flash.rb:241:in `call'
1444
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1445
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1446
+ actionpack (4.0.3) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1447
+ activerecord (4.0.3) lib/active_record/query_cache.rb:36:in `call'
1448
+ activerecord (4.0.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1449
+ activerecord (4.0.3) lib/active_record/migration.rb:369:in `call'
1450
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1451
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__3842386590705825355__call__callbacks'
1452
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
1453
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1454
+ actionpack (4.0.3) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1455
+ actionpack (4.0.3) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1456
+ actionpack (4.0.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1457
+ actionpack (4.0.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1458
+ railties (4.0.3) lib/rails/rack/logger.rb:38:in `call_app'
1459
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `block in call'
1460
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1461
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:25:in `tagged'
1462
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `tagged'
1463
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `call'
1464
+ actionpack (4.0.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1465
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1466
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1467
+ activesupport (4.0.3) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1468
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1469
+ actionpack (4.0.3) lib/action_dispatch/middleware/static.rb:64:in `call'
1470
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1471
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
1472
+ railties (4.0.3) lib/rails/application.rb:97:in `call'
1473
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1474
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1475
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1476
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1477
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1478
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1479
+
1480
+
1481
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
1482
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1483
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.1ms)
1484
+
1485
+
1486
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:22:38 +0100
1487
+ Processing by Feeder::FeedsController#index as HTML
1488
+ Feeder::Item Load (0.2ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1489
+ Rendered feeder/partials/_message.html.erb (4.9ms)
1490
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (5.5ms)
1491
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (6.4ms)
1492
+ Completed 500 Internal Server Error in 7ms
1493
+
1494
+ ActionView::Template::Error (undefined local variable or method `item' for #<#<Class:0x007f400bc95048>:0x007f3ff00b24f8>):
1495
+ 1: <%= item.header %>
1496
+ app/views/feeder/partials/_message.html.erb:1:in `_app_views_feeder_partials__message_html_erb__3752603417132771838_69956328078480'
1497
+
1498
+
1499
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
1500
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
1501
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.1ms)
1502
+
1503
+
1504
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:22:59 +0100
1505
+ Processing by Feeder::FeedsController#index as HTML
1506
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1507
+ Rendered feeder/partials/_message.html.erb (0.7ms)
1508
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (1.2ms)
1509
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (2.2ms)
1510
+ Completed 500 Internal Server Error in 3ms
1511
+
1512
+ ActionView::Template::Error (undefined method `header' for #<Feeder::Item:0x007f3fec0d26a8>):
1513
+ 1: <%= item.header %>
1514
+ app/views/feeder/partials/_message.html.erb:1:in `_app_views_feeder_partials__message_html_erb__3752603417132771838_69956360552400'
1515
+
1516
+
1517
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1518
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1519
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.9ms)
1520
+
1521
+
1522
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:23:13 +0100
1523
+ Processing by Feeder::FeedsController#index as HTML
1524
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1525
+ Message Load (1.2ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 1]]
1526
+ Rendered feeder/partials/_message.html.erb (4.3ms)
1527
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (17.5ms)
1528
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (18.4ms)
1529
+ Completed 500 Internal Server Error in 20ms
1530
+
1531
+ ActionView::Template::Error (undefined local variable or method `item' for #<#<Class:0x007f400bc95048>:0x007f3ffcf165d8>):
1532
+ 1: <%= item.header %>
1533
+ app/views/feeder/partials/_message.html.erb:1:in `_app_views_feeder_partials__message_html_erb__3752603417132771838_69956400681640'
1534
+
1535
+
1536
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
1537
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1538
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms)
1539
+
1540
+
1541
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:24:02 +0100
1542
+ Processing by Feeder::FeedsController#index as HTML
1543
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1544
+ Message Load (0.1ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 1]]
1545
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (1.6ms)
1546
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (2.5ms)
1547
+ Completed 500 Internal Server Error in 4ms
1548
+
1549
+ ActionView::Template::Error (Missing partial feeder/types/message with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
1550
+ * "/home/sindre/code/hyper/public/feeder/spec/dummy/app/views"
1551
+ * "/home/sindre/code/hyper/public/feeder/app/views"
1552
+ ):
1553
+ 1: <div class="feed_item">
1554
+ 2: <%= render "feeder/types/#{item.type}", feedable: item.feedable %>
1555
+ 3: </div>
1556
+ actionpack (4.0.3) lib/action_view/path_set.rb:46:in `find'
1557
+ actionpack (4.0.3) lib/action_view/lookup_context.rb:122:in `find'
1558
+ actionpack (4.0.3) lib/action_view/renderer/partial_renderer.rb:383:in `find_template'
1559
+ actionpack (4.0.3) lib/action_view/renderer/partial_renderer.rb:377:in `find_partial'
1560
+ actionpack (4.0.3) lib/action_view/renderer/partial_renderer.rb:263:in `render'
1561
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:47:in `render_partial'
1562
+ actionpack (4.0.3) lib/action_view/helpers/rendering_helper.rb:27:in `render'
1563
+ /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb:2:in `__home_sindre_code_hyper_public_feeder_app_views_feeder_items__item_html_erb__673154967575146608_69956526300480'
1564
+ actionpack (4.0.3) lib/action_view/template.rb:143:in `block in render'
1565
+ activesupport (4.0.3) lib/active_support/notifications.rb:161:in `instrument'
1566
+ actionpack (4.0.3) lib/action_view/template.rb:141:in `render'
1567
+ actionpack (4.0.3) lib/action_view/renderer/partial_renderer.rb:399:in `block in collection_with_template'
1568
+ actionpack (4.0.3) lib/action_view/renderer/partial_renderer.rb:395:in `map'
1569
+ actionpack (4.0.3) lib/action_view/renderer/partial_renderer.rb:395:in `collection_with_template'
1570
+ actionpack (4.0.3) lib/action_view/renderer/partial_renderer.rb:291:in `render_collection'
1571
+ actionpack (4.0.3) lib/action_view/renderer/partial_renderer.rb:275:in `block in render'
1572
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1573
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
1574
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1575
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
1576
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1577
+ actionpack (4.0.3) lib/action_view/renderer/partial_renderer.rb:274:in `render'
1578
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:47:in `render_partial'
1579
+ actionpack (4.0.3) lib/action_view/helpers/rendering_helper.rb:27:in `render'
1580
+ /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb:2:in `__home_sindre_code_hyper_public_feeder_app_views_feeder_feeds_index_html_erb___2723427387737092824_69956260016360'
1581
+ actionpack (4.0.3) lib/action_view/template.rb:143:in `block in render'
1582
+ activesupport (4.0.3) lib/active_support/notifications.rb:161:in `instrument'
1583
+ actionpack (4.0.3) lib/action_view/template.rb:141:in `render'
1584
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
1585
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1586
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
1587
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1588
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
1589
+ actionpack (4.0.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1590
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
1591
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
1592
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
1593
+ actionpack (4.0.3) lib/action_view/renderer/template_renderer.rb:17:in `render'
1594
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:42:in `render_template'
1595
+ actionpack (4.0.3) lib/action_view/renderer/renderer.rb:23:in `render'
1596
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:127:in `_render_template'
1597
+ actionpack (4.0.3) lib/action_controller/metal/streaming.rb:219:in `_render_template'
1598
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:120:in `render_to_body'
1599
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
1600
+ actionpack (4.0.3) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
1601
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:97:in `render'
1602
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:16:in `render'
1603
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1604
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1605
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
1606
+ activesupport (4.0.3) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1607
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1608
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1609
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1610
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:40:in `render'
1611
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1612
+ actionpack (4.0.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1613
+ actionpack (4.0.3) lib/abstract_controller/base.rb:189:in `process_action'
1614
+ actionpack (4.0.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1615
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1616
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__4587871063849352595__process_action__callbacks'
1617
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
1618
+ actionpack (4.0.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1619
+ actionpack (4.0.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1620
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1621
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `block in instrument'
1622
+ activesupport (4.0.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1623
+ activesupport (4.0.3) lib/active_support/notifications.rb:159:in `instrument'
1624
+ actionpack (4.0.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1625
+ actionpack (4.0.3) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1626
+ activerecord (4.0.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1627
+ actionpack (4.0.3) lib/abstract_controller/base.rb:136:in `process'
1628
+ actionpack (4.0.3) lib/abstract_controller/rendering.rb:44:in `process'
1629
+ actionpack (4.0.3) lib/action_controller/metal.rb:195:in `dispatch'
1630
+ actionpack (4.0.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1631
+ actionpack (4.0.3) lib/action_controller/metal.rb:231:in `block in action'
1632
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `call'
1633
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1634
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:48:in `call'
1635
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
1636
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
1637
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
1638
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
1639
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
1640
+ railties (4.0.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
1641
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:71:in `block in call'
1642
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `each'
1643
+ actionpack (4.0.3) lib/action_dispatch/journey/router.rb:59:in `call'
1644
+ actionpack (4.0.3) lib/action_dispatch/routing/route_set.rb:680:in `call'
1645
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1646
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1647
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1648
+ actionpack (4.0.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1649
+ actionpack (4.0.3) lib/action_dispatch/middleware/flash.rb:241:in `call'
1650
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1651
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1652
+ actionpack (4.0.3) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1653
+ activerecord (4.0.3) lib/active_record/query_cache.rb:36:in `call'
1654
+ activerecord (4.0.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1655
+ activerecord (4.0.3) lib/active_record/migration.rb:369:in `call'
1656
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1657
+ activesupport (4.0.3) lib/active_support/callbacks.rb:373:in `_run__3842386590705825355__call__callbacks'
1658
+ activesupport (4.0.3) lib/active_support/callbacks.rb:80:in `run_callbacks'
1659
+ actionpack (4.0.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1660
+ actionpack (4.0.3) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1661
+ actionpack (4.0.3) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1662
+ actionpack (4.0.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1663
+ actionpack (4.0.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1664
+ railties (4.0.3) lib/rails/rack/logger.rb:38:in `call_app'
1665
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `block in call'
1666
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1667
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:25:in `tagged'
1668
+ activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `tagged'
1669
+ railties (4.0.3) lib/rails/rack/logger.rb:20:in `call'
1670
+ actionpack (4.0.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1671
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1672
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1673
+ activesupport (4.0.3) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1674
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1675
+ actionpack (4.0.3) lib/action_dispatch/middleware/static.rb:64:in `call'
1676
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1677
+ railties (4.0.3) lib/rails/engine.rb:511:in `call'
1678
+ railties (4.0.3) lib/rails/application.rb:97:in `call'
1679
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1680
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1681
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1682
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1683
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1684
+ /home/sindre/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1685
+
1686
+
1687
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
1688
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1689
+ Rendered /home/sindre/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.4ms)
1690
+
1691
+
1692
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:24:30 +0100
1693
+ Processing by Feeder::FeedsController#index as HTML
1694
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1695
+ Message Load (0.0ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 1]]
1696
+ Rendered feeder/types/_message.html.erb (0.3ms)
1697
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (1.2ms)
1698
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (2.0ms)
1699
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)
1700
+
1701
+
1702
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 17:24:30 +0100
1703
+
1704
+
1705
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 17:24:30 +0100
1706
+
1707
+
1708
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 17:24:30 +0100
1709
+
1710
+
1711
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 17:24:30 +0100
1712
+
1713
+
1714
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:25:27 +0100
1715
+ Processing by Feeder::FeedsController#index as HTML
1716
+ Feeder::Item Load (0.2ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1717
+ Message Load (0.1ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 1]]
1718
+ Rendered feeder/types/_message.html.erb (0.4ms)
1719
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (1.8ms)
1720
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (3.0ms)
1721
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.2ms)
1722
+
1723
+
1724
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 17:25:27 +0100
1725
+
1726
+
1727
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 17:25:27 +0100
1728
+
1729
+
1730
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 17:25:27 +0100
1731
+
1732
+
1733
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 17:25:27 +0100
1734
+
1735
+
1736
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:25:40 +0100
1737
+ Processing by Feeder::FeedsController#index as HTML
1738
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1739
+ Message Load (0.1ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 1]]
1740
+ Rendered feeder/types/_message.html.erb (0.0ms)
1741
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (0.9ms)
1742
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (1.7ms)
1743
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.2ms)
1744
+
1745
+
1746
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 17:25:40 +0100
1747
+
1748
+
1749
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 17:25:40 +0100
1750
+
1751
+
1752
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 17:25:40 +0100
1753
+
1754
+
1755
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 17:25:40 +0100
1756
+
1757
+
1758
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:25:42 +0100
1759
+ Processing by Feeder::FeedsController#index as HTML
1760
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1761
+ Message Load (0.1ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 1]]
1762
+ Rendered feeder/types/_message.html.erb (0.3ms)
1763
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (1.2ms)
1764
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (2.0ms)
1765
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1766
+
1767
+
1768
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 17:25:42 +0100
1769
+
1770
+
1771
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 17:25:42 +0100
1772
+
1773
+
1774
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 17:25:42 +0100
1775
+
1776
+
1777
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 17:25:42 +0100
1778
+
1779
+
1780
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:25:50 +0100
1781
+ Processing by Feeder::FeedsController#index as HTML
1782
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1783
+ Message Load (0.1ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 1]]
1784
+ Rendered feeder/types/_message.html.erb (0.4ms)
1785
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (18.8ms)
1786
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (19.8ms)
1787
+ Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.2ms)
1788
+
1789
+
1790
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 17:25:50 +0100
1791
+
1792
+
1793
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 17:25:50 +0100
1794
+
1795
+
1796
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 17:25:50 +0100
1797
+
1798
+
1799
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 17:25:50 +0100
1800
+
1801
+
1802
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:25:56 +0100
1803
+ Processing by Feeder::FeedsController#index as HTML
1804
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1805
+ Message Load (0.1ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 1]]
1806
+ Rendered feeder/types/_message.html.erb (3.0ms)
1807
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (3.9ms)
1808
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (4.8ms)
1809
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.2ms)
1810
+
1811
+
1812
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 17:25:56 +0100
1813
+
1814
+
1815
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 17:25:56 +0100
1816
+
1817
+
1818
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 17:25:56 +0100
1819
+
1820
+
1821
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 17:25:56 +0100
1822
+
1823
+
1824
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:26:37 +0100
1825
+ Processing by Feeder::FeedsController#index as HTML
1826
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1827
+ Message Load (0.1ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 1]]
1828
+ Rendered feeder/types/_message.html.erb (0.3ms)
1829
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (2.1ms)
1830
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (3.0ms)
1831
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.2ms)
1832
+
1833
+
1834
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 17:26:37 +0100
1835
+
1836
+
1837
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 17:26:37 +0100
1838
+
1839
+
1840
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 17:26:37 +0100
1841
+
1842
+
1843
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 17:26:37 +0100
1844
+
1845
+
1846
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:38:50 +0100
1847
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1848
+ Processing by Feeder::FeedsController#index as HTML
1849
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1850
+ Message Load (4.9ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 1]]
1851
+ Rendered feeder/types/_message.html.erb (1.7ms)
1852
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (17.3ms)
1853
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (24.1ms)
1854
+ Completed 200 OK in 43ms (Views: 35.8ms | ActiveRecord: 5.5ms)
1855
+
1856
+
1857
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 17:38:50 +0100
1858
+
1859
+
1860
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 17:38:50 +0100
1861
+
1862
+
1863
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 17:38:50 +0100
1864
+
1865
+
1866
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 17:38:50 +0100
1867
+
1868
+
1869
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:40:36 +0100
1870
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1871
+ Processing by Feeder::FeedsController#index as HTML
1872
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1873
+ Message Load (1.1ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 1]]
1874
+ Rendered feeder/types/_message.html.erb (1.8ms)
1875
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (13.0ms)
1876
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (18.6ms)
1877
+ Completed 200 OK in 41ms (Views: 33.7ms | ActiveRecord: 1.6ms)
1878
+
1879
+
1880
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 17:40:36 +0100
1881
+
1882
+
1883
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 17:40:36 +0100
1884
+
1885
+
1886
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 17:40:36 +0100
1887
+
1888
+
1889
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 17:40:36 +0100
1890
+
1891
+
1892
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 17:41:29 +0100
1893
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1894
+ Processing by Feeder::FeedsController#index as HTML
1895
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1896
+ Message Load (1.1ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 1]]
1897
+ Rendered feeder/types/_message.html.erb (1.7ms)
1898
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (12.8ms)
1899
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (18.8ms)
1900
+ Completed 200 OK in 37ms (Views: 33.6ms | ActiveRecord: 1.6ms)
1901
+
1902
+
1903
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 17:41:29 +0100
1904
+
1905
+
1906
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 17:41:29 +0100
1907
+
1908
+
1909
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 17:41:29 +0100
1910
+
1911
+
1912
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 17:41:29 +0100
1913
+ SQL (3.7ms) DELETE FROM "messages"
1914
+ SQL (3.3ms) DELETE FROM "feeder_items"
1915
+  (0.1ms) begin transaction
1916
+ SQL (2.1ms) INSERT INTO "messages" ("body", "created_at", "header", "updated_at") VALUES (?, ?, ?, ?) [["body", "This is a test message"], ["created_at", Mon, 17 Mar 2014 19:55:08 UTC +00:00], ["header", "Test message"], ["updated_at", Mon, 17 Mar 2014 19:55:08 UTC +00:00]]
1917
+  (2.3ms) commit transaction
1918
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items"
1919
+  (0.1ms) begin transaction
1920
+ SQL (0.2ms) INSERT INTO "messages" ("body", "created_at", "header", "updated_at") VALUES (?, ?, ?, ?) [["body", "This is a test message"], ["created_at", Mon, 17 Mar 2014 19:55:56 UTC +00:00], ["header", "Test message"], ["updated_at", Mon, 17 Mar 2014 19:55:56 UTC +00:00]]
1921
+  (3.6ms) commit transaction
1922
+  (0.0ms) begin transaction
1923
+ SQL (0.2ms) INSERT INTO "messages" ("body", "created_at", "header", "updated_at") VALUES (?, ?, ?, ?) [["body", "This is a test message"], ["created_at", Mon, 17 Mar 2014 19:56:01 UTC +00:00], ["header", "Test message"], ["updated_at", Mon, 17 Mar 2014 19:56:01 UTC +00:00]]
1924
+  (4.0ms) commit transaction
1925
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items"
1926
+ SQL (2.7ms) DELETE FROM "messages"
1927
+  (0.1ms) begin transaction
1928
+ SQL (2.2ms) INSERT INTO "messages" ("body", "created_at", "header", "updated_at") VALUES (?, ?, ?, ?) [["body", "This is a test message"], ["created_at", Mon, 17 Mar 2014 20:03:38 UTC +00:00], ["header", "Test message"], ["updated_at", Mon, 17 Mar 2014 20:03:38 UTC +00:00]]
1929
+  (0.1ms) rollback transaction
1930
+  (0.1ms) begin transaction
1931
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "header", "updated_at") VALUES (?, ?, ?, ?) [["body", "This is a test message"], ["created_at", Mon, 17 Mar 2014 20:04:02 UTC +00:00], ["header", "Test message"], ["updated_at", Mon, 17 Mar 2014 20:04:02 UTC +00:00]]
1932
+ SQL (0.3ms) INSERT INTO "feeder_items" ("created_at", "feedable_id", "feedable_type", "published_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 17 Mar 2014 20:04:02 UTC +00:00], ["feedable_id", 5], ["feedable_type", "Message"], ["published_at", Mon, 17 Mar 2014 20:04:02 UTC +00:00], ["updated_at", Mon, 17 Mar 2014 20:04:02 UTC +00:00]]
1933
+  (4.3ms) commit transaction
1934
+
1935
+
1936
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 21:04:33 +0100
1937
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1938
+ Processing by Feeder::FeedsController#index as HTML
1939
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1940
+ Message Load (1.4ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 5]]
1941
+ Rendered feeder/types/_message.html.erb (1.7ms)
1942
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (16.0ms)
1943
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (21.2ms)
1944
+ Completed 200 OK in 39ms (Views: 35.3ms | ActiveRecord: 1.8ms)
1945
+
1946
+
1947
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 21:04:33 +0100
1948
+
1949
+
1950
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 21:04:33 +0100
1951
+
1952
+
1953
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 21:04:33 +0100
1954
+
1955
+
1956
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 21:04:33 +0100
1957
+  (0.1ms) begin transaction
1958
+ SQL (0.2ms) INSERT INTO "messages" ("body", "created_at", "header", "updated_at") VALUES (?, ?, ?, ?) [["body", "This is another test message"], ["created_at", Mon, 17 Mar 2014 20:04:47 UTC +00:00], ["header", "YATM"], ["updated_at", Mon, 17 Mar 2014 20:04:47 UTC +00:00]]
1959
+ SQL (0.1ms) INSERT INTO "feeder_items" ("created_at", "feedable_id", "feedable_type", "published_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 17 Mar 2014 20:04:47 UTC +00:00], ["feedable_id", 6], ["feedable_type", "Message"], ["published_at", Mon, 17 Mar 2014 20:04:47 UTC +00:00], ["updated_at", Mon, 17 Mar 2014 20:04:47 UTC +00:00]]
1960
+  (4.2ms) commit transaction
1961
+
1962
+
1963
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 21:04:48 +0100
1964
+ Processing by Feeder::FeedsController#index as HTML
1965
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1966
+ Message Load (0.1ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 6]]
1967
+ Rendered feeder/types/_message.html.erb (0.1ms)
1968
+ Message Load (0.0ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 5]]
1969
+ Rendered feeder/types/_message.html.erb (0.0ms)
1970
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (1.8ms)
1971
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (2.6ms)
1972
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms)
1973
+
1974
+
1975
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 21:04:48 +0100
1976
+
1977
+
1978
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 21:04:48 +0100
1979
+
1980
+
1981
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 21:04:48 +0100
1982
+
1983
+
1984
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 21:04:48 +0100
1985
+  (0.1ms) begin transaction
1986
+ SQL (2.1ms) INSERT INTO "messages" ("body", "created_at", "header", "updated_at") VALUES (?, ?, ?, ?) [["body", "This is a third test message"], ["created_at", Mon, 17 Mar 2014 20:05:07 UTC +00:00], ["header", "YATM"], ["updated_at", Mon, 17 Mar 2014 20:05:07 UTC +00:00]]
1987
+  (4.1ms) commit transaction
1988
+
1989
+
1990
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 21:05:14 +0100
1991
+ Processing by Feeder::FeedsController#index as HTML
1992
+ Feeder::Item Load (0.2ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
1993
+ Message Load (0.1ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 6]]
1994
+ Rendered feeder/types/_message.html.erb (0.1ms)
1995
+ Message Load (0.1ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 5]]
1996
+ Rendered feeder/types/_message.html.erb (0.1ms)
1997
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (5.9ms)
1998
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (7.0ms)
1999
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.3ms)
2000
+
2001
+
2002
+ Started GET "/assets/feeder/feeds.css?body=1" for 127.0.0.1 at 2014-03-17 21:05:14 +0100
2003
+
2004
+
2005
+ Started GET "/assets/feeder/feeds.js?body=1" for 127.0.0.1 at 2014-03-17 21:05:14 +0100
2006
+
2007
+
2008
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 21:05:14 +0100
2009
+
2010
+
2011
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 21:05:14 +0100
2012
+
2013
+
2014
+ Started GET "/feeder" for 127.0.0.1 at 2014-03-17 21:59:38 +0100
2015
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2016
+ Processing by Feeder::FeedsController#index as HTML
2017
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items" ORDER BY "feeder_items"."published_at" DESC
2018
+ Message Load (1.2ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 6]]
2019
+ Rendered feeder/types/_message.html.erb (1.9ms)
2020
+ Message Load (0.1ms) SELECT "messages".* FROM "messages" WHERE "messages"."id" = ? ORDER BY "messages"."id" ASC LIMIT 1 [["id", 5]]
2021
+ Rendered feeder/types/_message.html.erb (0.1ms)
2022
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/items/_item.html.erb (16.6ms)
2023
+ Rendered /home/sindre/code/hyper/public/feeder/app/views/feeder/feeds/index.html.erb within layouts/feeder/application (22.4ms)
2024
+ Completed 200 OK in 41ms (Views: 37.3ms | ActiveRecord: 1.8ms)
2025
+
2026
+
2027
+ Started GET "/assets/feeder/application.js?body=1" for 127.0.0.1 at 2014-03-17 21:59:38 +0100
2028
+
2029
+
2030
+ Started GET "/assets/feeder/application.css?body=1" for 127.0.0.1 at 2014-03-17 21:59:38 +0100
2031
+  (3.6ms) CREATE TABLE "feeder_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "published_at" datetime, "created_at" datetime, "updated_at" datetime, "feedable_id" integer, "feedable_type" varchar(255)) 
2032
+  (2.4ms) CREATE INDEX "index_feeder_items_on_feedable_id_and_feedable_type" ON "feeder_items" ("feedable_id", "feedable_type")
2033
+  (2.5ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "header" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
2034
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2035
+  (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2036
+  (0.1ms) SELECT version FROM "schema_migrations"
2037
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140317152438')
2038
+  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140317150822')
2039
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140317152137')
2040
+  (4.4ms) CREATE TABLE "feeder_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "published_at" datetime, "created_at" datetime, "updated_at" datetime, "feedable_id" integer, "feedable_type" varchar(255)) 
2041
+  (2.6ms) CREATE INDEX "index_feeder_items_on_feedable_id_and_feedable_type" ON "feeder_items" ("feedable_id", "feedable_type")
2042
+  (2.6ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "header" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
2043
+  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2044
+  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2045
+  (0.0ms) SELECT version FROM "schema_migrations"
2046
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140317152438')
2047
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140317150822')
2048
+  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140317152137')
2049
+ Message Load (0.7ms) SELECT "messages".* FROM "messages"
2050
+  (0.0ms) begin transaction
2051
+ SQL (1.1ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 5]]
2052
+  (4.2ms) commit transaction
2053
+  (0.1ms) begin transaction
2054
+ SQL (0.1ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 6]]
2055
+  (2.4ms) commit transaction
2056
+  (0.0ms) begin transaction
2057
+ SQL (0.1ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 7]]
2058
+  (2.3ms) commit transaction
2059
+ Feeder::Item Load (0.2ms) SELECT "feeder_items".* FROM "feeder_items"
2060
+  (0.0ms) begin transaction
2061
+ SQL (0.1ms) DELETE FROM "feeder_items" WHERE "feeder_items"."id" = ? [["id", 2]]
2062
+  (3.1ms) commit transaction
2063
+  (0.0ms) begin transaction
2064
+ SQL (0.1ms) DELETE FROM "feeder_items" WHERE "feeder_items"."id" = ? [["id", 3]]
2065
+  (2.2ms) commit transaction
2066
+  (0.1ms) begin transaction
2067
+ SQL (2.5ms) INSERT INTO "messages" ("body", "created_at", "header", "updated_at") VALUES (?, ?, ?, ?) [["body", "This is a third test message"], ["created_at", Mon, 17 Mar 2014 22:01:16 UTC +00:00], ["header", "YATM"], ["updated_at", Mon, 17 Mar 2014 22:01:16 UTC +00:00]]
2068
+  (2.8ms) commit transaction
2069
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items"
2070
+  (0.1ms) begin transaction
2071
+ SQL (1.7ms) INSERT INTO "messages" ("body", "created_at", "header", "updated_at") VALUES (?, ?, ?, ?) [["body", "This is a third test message"], ["created_at", Mon, 17 Mar 2014 22:02:01 UTC +00:00], ["header", "YATM"], ["updated_at", Mon, 17 Mar 2014 22:02:01 UTC +00:00]]
2072
+ SQL (0.3ms) INSERT INTO "feeder_items" ("created_at", "feedable_id", "feedable_type", "published_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 17 Mar 2014 22:02:01 UTC +00:00], ["feedable_id", 9], ["feedable_type", "Message"], ["published_at", Mon, 17 Mar 2014 22:02:01 UTC +00:00], ["updated_at", Mon, 17 Mar 2014 22:02:01 UTC +00:00]]
2073
+  (3.7ms) commit transaction
2074
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items"
2075
+ Feeder::Item Load (0.1ms) SELECT "feeder_items".* FROM "feeder_items"
2076
+  (0.1ms) begin transaction
2077
+ SQL (0.1ms) DELETE FROM "feeder_items" WHERE "feeder_items"."id" = ? [["id", 4]]
2078
+  (2.8ms) commit transaction
2079
+ Message Load (0.1ms) SELECT "messages".* FROM "messages"
2080
+  (0.0ms) begin transaction
2081
+ SQL (0.1ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 8]]
2082
+  (3.5ms) commit transaction
2083
+  (0.1ms) begin transaction
2084
+ SQL (0.1ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 9]]
2085
+  (2.4ms) commit transaction