noa-layout 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +8 -0
- data/LICENSE.txt +22 -0
- data/README.md +47 -0
- data/Rakefile +7 -0
- data/app/assets/javascripts/noa/layout/bootstrap.js +4 -0
- data/app/assets/stylesheets/noa/layout/bootstrap.css +6 -0
- data/app/assets/stylesheets/noa/layout/bootstrap/layout.css.scss +44 -0
- data/app/helpers/noa/layout/base_helper.rb +68 -0
- data/app/views/layouts/noa/layout/_sidebar.html.erb +1 -0
- data/app/views/layouts/noa/layout/base.html.erb +40 -0
- data/app/views/layouts/noa/layout/bootstrap.html.erb +42 -0
- data/lib/generators/noa/layout/install_generator.rb +9 -0
- data/lib/noa/layout.rb +8 -0
- data/lib/noa/layout/engine.rb +6 -0
- data/lib/noa/layout/version.rb +5 -0
- data/noa-layout.gemspec +26 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +16 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.keep +0 -0
- data/spec/dummy/app/models/.keep +0 -0
- data/spec/dummy/app/models/concerns/.keep +0 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +27 -0
- data/spec/dummy/config/boot.rb +9 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +27 -0
- data/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +12 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +2 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/schema.rb +23 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/log/development.log +1259 -0
- data/spec/dummy/log/test.log +849 -0
- data/spec/dummy/public/404.html +27 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/spec_helper.rb +15 -0
- metadata +175 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
|
3
|
+
* listed below.
|
|
4
|
+
*
|
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
|
7
|
+
*
|
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
|
10
|
+
*
|
|
11
|
+
*= require_self
|
|
12
|
+
*= require_tree .
|
|
13
|
+
*/
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>Dummy</title>
|
|
5
|
+
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
|
|
6
|
+
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
|
|
7
|
+
<%= csrf_meta_tags %>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
|
|
11
|
+
<%= yield %>
|
|
12
|
+
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
data/spec/dummy/bin/rake
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
|
2
|
+
|
|
3
|
+
# Pick the frameworks you want:
|
|
4
|
+
require "active_record/railtie"
|
|
5
|
+
require "action_controller/railtie"
|
|
6
|
+
require "action_mailer/railtie"
|
|
7
|
+
require "sprockets/railtie"
|
|
8
|
+
# require "rails/test_unit/railtie"
|
|
9
|
+
|
|
10
|
+
Bundler.require(*Rails.groups)
|
|
11
|
+
|
|
12
|
+
module Dummy
|
|
13
|
+
class Application < Rails::Application
|
|
14
|
+
# Settings in config/environments/* take precedence over those specified here.
|
|
15
|
+
# Application configuration should go into files in config/initializers
|
|
16
|
+
# -- all .rb files in that directory are automatically loaded.
|
|
17
|
+
|
|
18
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
|
19
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
|
20
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
|
21
|
+
|
|
22
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
|
23
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
|
24
|
+
# config.i18n.default_locale = :de
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# SQLite version 3.x
|
|
2
|
+
# gem install sqlite3
|
|
3
|
+
#
|
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
|
5
|
+
# gem 'sqlite3'
|
|
6
|
+
development:
|
|
7
|
+
adapter: sqlite3
|
|
8
|
+
database: db/development.sqlite3
|
|
9
|
+
pool: 5
|
|
10
|
+
timeout: 5000
|
|
11
|
+
|
|
12
|
+
# Warning: The database defined as "test" will be erased and
|
|
13
|
+
# re-generated from your development database when you run "rake".
|
|
14
|
+
# Do not set this db to the same as development or production.
|
|
15
|
+
test:
|
|
16
|
+
adapter: sqlite3
|
|
17
|
+
database: db/test.sqlite3
|
|
18
|
+
pool: 5
|
|
19
|
+
timeout: 5000
|
|
20
|
+
|
|
21
|
+
production:
|
|
22
|
+
adapter: sqlite3
|
|
23
|
+
database: db/production.sqlite3
|
|
24
|
+
pool: 5
|
|
25
|
+
timeout: 5000
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Dummy::Application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
|
3
|
+
|
|
4
|
+
# In the development environment your application's code is reloaded on
|
|
5
|
+
# every request. This slows down response time but is perfect for development
|
|
6
|
+
# since you don't have to restart the web server when you make code changes.
|
|
7
|
+
config.cache_classes = false
|
|
8
|
+
|
|
9
|
+
# Do not eager load code on boot.
|
|
10
|
+
config.eager_load = false
|
|
11
|
+
|
|
12
|
+
# Show full error reports and disable caching.
|
|
13
|
+
config.consider_all_requests_local = true
|
|
14
|
+
config.action_controller.perform_caching = false
|
|
15
|
+
|
|
16
|
+
# Don't care if the mailer can't send.
|
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
|
18
|
+
|
|
19
|
+
# Print deprecation notices to the Rails logger.
|
|
20
|
+
config.active_support.deprecation = :log
|
|
21
|
+
|
|
22
|
+
# Raise an error on page load if there are pending migrations
|
|
23
|
+
config.active_record.migration_error = :page_load
|
|
24
|
+
|
|
25
|
+
# Debug mode disables concatenation and preprocessing of assets.
|
|
26
|
+
config.assets.debug = true
|
|
27
|
+
end
|
|
@@ -0,0 +1,80 @@
|
|
|
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 thread 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
|
+
# Whether to 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 can not 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
|
+
end
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
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,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,12 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Your secret key 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 = 'f86338ea95c758035065a9752bfb0fab80fa7f2dcc15307fa4175afd8861e2817e83c301c3d5ce7ba1ccd0ea7a820ae45a03ded91e11846dd8c7501109fad981'
|
|
@@ -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"
|
|
Binary file
|
|
@@ -0,0 +1,23 @@
|
|
|
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: 20130406105846) do
|
|
15
|
+
|
|
16
|
+
create_table "posts", force: true do |t|
|
|
17
|
+
t.string "name"
|
|
18
|
+
t.text "content"
|
|
19
|
+
t.datetime "created_at"
|
|
20
|
+
t.datetime "updated_at"
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
end
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,1259 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
Started GET "/" for 127.0.0.1 at 2013-04-06 13:37:21 +0300
|
|
4
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
5
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/railties-4.0.0.beta1/lib/rails/templates/rails/welcome/index.html.erb (6.3ms)
|
|
6
|
+
Completed 200 OK in 28ms (Views: 25.6ms | ActiveRecord: 0.0ms)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
Started GET "/assets/rails.png" for 127.0.0.1 at 2013-04-06 13:37:22 +0300
|
|
10
|
+
|
|
11
|
+
ActionController::RoutingError (No route matches [GET] "/assets/rails.png"):
|
|
12
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
13
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
14
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
15
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `block in call'
|
|
16
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
|
17
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
|
18
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
|
19
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `call'
|
|
20
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
21
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
22
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
23
|
+
activesupport (4.0.0.beta1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
24
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
25
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
26
|
+
railties (4.0.0.beta1) lib/rails/engine.rb:510:in `call'
|
|
27
|
+
railties (4.0.0.beta1) lib/rails/application.rb:96:in `call'
|
|
28
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
29
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
30
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
31
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
32
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
33
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
|
|
37
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (14.7ms)
|
|
38
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (53.1ms)
|
|
39
|
+
[1m[36m (138.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
40
|
+
[1m[35m (111.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
41
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
42
|
+
Migrating to CreatePosts (20130406105846)
|
|
43
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
44
|
+
[1m[36m (7.0ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "content" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
45
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130406105846"]]
|
|
46
|
+
[1m[36m (140.2ms)[0m [1mcommit transaction[0m
|
|
47
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
48
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
49
|
+
[1m[35m (152.2ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "content" text, "created_at" datetime, "updated_at" datetime)
|
|
50
|
+
[1m[36m (144.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
51
|
+
[1m[35m (122.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
52
|
+
[1m[36m (0.3ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
53
|
+
[1m[35m (111.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130406105846')
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
Started GET "/posts" for 127.0.0.1 at 2013-04-06 14:27:01 +0300
|
|
57
|
+
Processing by PostsController#index as HTML
|
|
58
|
+
Completed 500 Internal Server Error in 1ms
|
|
59
|
+
|
|
60
|
+
NoMethodError (undefined method `all' for Noa::Resource:Module):
|
|
61
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-78e1380fa6a2/lib/inherited_resources/base_helpers.rb:25:in `collection'
|
|
62
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-78e1380fa6a2/lib/inherited_resources/actions.rb:7:in `index'
|
|
63
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
64
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:189:in `process_action'
|
|
65
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
66
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
67
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:383:in `_run__459198938613510764__process_action__callbacks'
|
|
68
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
69
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
70
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
71
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
72
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `block in instrument'
|
|
73
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
74
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `instrument'
|
|
75
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
76
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
|
77
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
78
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:136:in `process'
|
|
79
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:44:in `process'
|
|
80
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:196:in `dispatch'
|
|
81
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
82
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:232:in `block in action'
|
|
83
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `call'
|
|
84
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `dispatch'
|
|
85
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:46:in `call'
|
|
86
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:69:in `block in call'
|
|
87
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `each'
|
|
88
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `call'
|
|
89
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:651:in `call'
|
|
90
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
91
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
92
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
93
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
94
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
95
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
96
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
97
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/cookies.rb:452:in `call'
|
|
98
|
+
activerecord (4.0.0.beta1) lib/active_record/query_cache.rb:36:in `call'
|
|
99
|
+
activerecord (4.0.0.beta1) lib/active_record/connection_adapters/abstract/connection_pool.rb:632:in `call'
|
|
100
|
+
activerecord (4.0.0.beta1) lib/active_record/migration.rb:348:in `call'
|
|
101
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
102
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:373:in `_run__2201140743436585421__call__callbacks'
|
|
103
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
104
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
105
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
106
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
107
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
108
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
109
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
110
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `block in call'
|
|
111
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
|
112
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
|
113
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
|
114
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `call'
|
|
115
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
116
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
117
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
118
|
+
activesupport (4.0.0.beta1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
119
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
120
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
121
|
+
railties (4.0.0.beta1) lib/rails/engine.rb:510:in `call'
|
|
122
|
+
railties (4.0.0.beta1) lib/rails/application.rb:96:in `call'
|
|
123
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
124
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
125
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
126
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
127
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
128
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
|
|
132
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.6ms)
|
|
133
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (62.7ms)
|
|
134
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (112.7ms)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
Started GET "/posts" for 127.0.0.1 at 2013-04-06 14:56:50 +0300
|
|
138
|
+
Processing by PostsController#index as HTML
|
|
139
|
+
Completed 500 Internal Server Error in 1ms
|
|
140
|
+
|
|
141
|
+
NoMethodError (undefined method `all' for Noa::Resource:Module):
|
|
142
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/base_helpers.rb:25:in `collection'
|
|
143
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/actions.rb:7:in `index'
|
|
144
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
145
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:189:in `process_action'
|
|
146
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
147
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
148
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:383:in `_run__4067146286276045992__process_action__callbacks'
|
|
149
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
150
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
151
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
152
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
153
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `block in instrument'
|
|
154
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
155
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `instrument'
|
|
156
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
157
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
|
158
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
159
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:136:in `process'
|
|
160
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:44:in `process'
|
|
161
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:196:in `dispatch'
|
|
162
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
163
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:232:in `block in action'
|
|
164
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `call'
|
|
165
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `dispatch'
|
|
166
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:46:in `call'
|
|
167
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:69:in `block in call'
|
|
168
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `each'
|
|
169
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `call'
|
|
170
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:651:in `call'
|
|
171
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
172
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
173
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
174
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
175
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
176
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
177
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
178
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/cookies.rb:452:in `call'
|
|
179
|
+
activerecord (4.0.0.beta1) lib/active_record/query_cache.rb:36:in `call'
|
|
180
|
+
activerecord (4.0.0.beta1) lib/active_record/connection_adapters/abstract/connection_pool.rb:632:in `call'
|
|
181
|
+
activerecord (4.0.0.beta1) lib/active_record/migration.rb:348:in `call'
|
|
182
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
183
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:373:in `_run__2814698429400867030__call__callbacks'
|
|
184
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
185
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
186
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
187
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
188
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
189
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
190
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
191
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `block in call'
|
|
192
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
|
193
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
|
194
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
|
195
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `call'
|
|
196
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
197
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
198
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
199
|
+
activesupport (4.0.0.beta1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
200
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
201
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
202
|
+
railties (4.0.0.beta1) lib/rails/engine.rb:510:in `call'
|
|
203
|
+
railties (4.0.0.beta1) lib/rails/application.rb:96:in `call'
|
|
204
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
205
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
206
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
207
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
208
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
209
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
|
|
213
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
|
|
214
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (62.7ms)
|
|
215
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (113.9ms)
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
Started GET "/posts" for 127.0.0.1 at 2013-04-06 14:58:09 +0300
|
|
219
|
+
Processing by PostsController#index as HTML
|
|
220
|
+
Completed 500 Internal Server Error in 3ms
|
|
221
|
+
|
|
222
|
+
NoMethodError (undefined method `all' for Noa::Resource:Module):
|
|
223
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/base_helpers.rb:25:in `collection'
|
|
224
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/actions.rb:7:in `index'
|
|
225
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
226
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:189:in `process_action'
|
|
227
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
228
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
229
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:383:in `_run__2151275269366725413__process_action__callbacks'
|
|
230
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
231
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
232
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
233
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
234
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `block in instrument'
|
|
235
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
236
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `instrument'
|
|
237
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
238
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
|
239
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
240
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:136:in `process'
|
|
241
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:44:in `process'
|
|
242
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:196:in `dispatch'
|
|
243
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
244
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:232:in `block in action'
|
|
245
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `call'
|
|
246
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `dispatch'
|
|
247
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:46:in `call'
|
|
248
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:69:in `block in call'
|
|
249
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `each'
|
|
250
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `call'
|
|
251
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:651:in `call'
|
|
252
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
253
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
254
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
255
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
256
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
257
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
258
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
259
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/cookies.rb:452:in `call'
|
|
260
|
+
activerecord (4.0.0.beta1) lib/active_record/query_cache.rb:36:in `call'
|
|
261
|
+
activerecord (4.0.0.beta1) lib/active_record/connection_adapters/abstract/connection_pool.rb:632:in `call'
|
|
262
|
+
activerecord (4.0.0.beta1) lib/active_record/migration.rb:348:in `call'
|
|
263
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
264
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:373:in `_run__4292574328610411034__call__callbacks'
|
|
265
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
266
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
267
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
268
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
269
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
270
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
271
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
272
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `block in call'
|
|
273
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
|
274
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
|
275
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
|
276
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `call'
|
|
277
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
278
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
279
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
280
|
+
activesupport (4.0.0.beta1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
281
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
282
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
283
|
+
railties (4.0.0.beta1) lib/rails/engine.rb:510:in `call'
|
|
284
|
+
railties (4.0.0.beta1) lib/rails/application.rb:96:in `call'
|
|
285
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
286
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
287
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
288
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
289
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
290
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms)
|
|
294
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (6.3ms)
|
|
295
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (63.7ms)
|
|
296
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (113.6ms)
|
|
297
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" ORDER BY "posts"."id" ASC LIMIT 1[0m
|
|
298
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
299
|
+
[1m[36mSQL (9.0ms)[0m [1mINSERT INTO "posts" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 06 Apr 2013 12:05:26 UTC +00:00], ["name", "foo"], ["updated_at", Sat, 06 Apr 2013 12:05:26 UTC +00:00]]
|
|
300
|
+
[1m[35m (160.8ms)[0m commit transaction
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
Started GET "/posts" for 127.0.0.1 at 2013-04-06 15:21:21 +0300
|
|
304
|
+
|
|
305
|
+
ArgumentError (Unknown key: path_prefix):
|
|
306
|
+
app/controllers/posts_controller.rb:1:in `<top (required)>'
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.4ms)
|
|
310
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (7.6ms)
|
|
311
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (68.0ms)
|
|
312
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (119.2ms)
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
Started GET "/posts" for 127.0.0.1 at 2013-04-06 15:22:25 +0300
|
|
316
|
+
Processing by PostsController#index as HTML
|
|
317
|
+
Completed 500 Internal Server Error in 1ms
|
|
318
|
+
|
|
319
|
+
NoMethodError (undefined method `all' for Noa::Resource:Module):
|
|
320
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/base_helpers.rb:25:in `collection'
|
|
321
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/actions.rb:7:in `index'
|
|
322
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
323
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:189:in `process_action'
|
|
324
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
325
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
326
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:383:in `_run__442997637502385865__process_action__callbacks'
|
|
327
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
328
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
329
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
330
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
331
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `block in instrument'
|
|
332
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
333
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `instrument'
|
|
334
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
335
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
|
336
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
337
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:136:in `process'
|
|
338
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:44:in `process'
|
|
339
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:196:in `dispatch'
|
|
340
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
341
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:232:in `block in action'
|
|
342
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `call'
|
|
343
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `dispatch'
|
|
344
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:46:in `call'
|
|
345
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:69:in `block in call'
|
|
346
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `each'
|
|
347
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `call'
|
|
348
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:651:in `call'
|
|
349
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
350
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
351
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
352
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
353
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
354
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
355
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
356
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/cookies.rb:452:in `call'
|
|
357
|
+
activerecord (4.0.0.beta1) lib/active_record/query_cache.rb:36:in `call'
|
|
358
|
+
activerecord (4.0.0.beta1) lib/active_record/connection_adapters/abstract/connection_pool.rb:632:in `call'
|
|
359
|
+
activerecord (4.0.0.beta1) lib/active_record/migration.rb:348:in `call'
|
|
360
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
361
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:373:in `_run__1201485300046020205__call__callbacks'
|
|
362
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
363
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
364
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
365
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
366
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
367
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
368
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
369
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `block in call'
|
|
370
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
|
371
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
|
372
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
|
373
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `call'
|
|
374
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
375
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
376
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
377
|
+
activesupport (4.0.0.beta1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
378
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
379
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
380
|
+
railties (4.0.0.beta1) lib/rails/engine.rb:510:in `call'
|
|
381
|
+
railties (4.0.0.beta1) lib/rails/application.rb:96:in `call'
|
|
382
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
383
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
384
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
385
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
386
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
387
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.2ms)
|
|
391
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (9.4ms)
|
|
392
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.1ms)
|
|
393
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (41.5ms)
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
Started GET "/posts" for 127.0.0.1 at 2013-04-06 15:25:15 +0300
|
|
397
|
+
Processing by PostsController#index as HTML
|
|
398
|
+
Completed 500 Internal Server Error in 1ms
|
|
399
|
+
|
|
400
|
+
NoMethodError (undefined method `all' for Noa::Resource:Module):
|
|
401
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/base_helpers.rb:25:in `collection'
|
|
402
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/actions.rb:7:in `index'
|
|
403
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
404
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:189:in `process_action'
|
|
405
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
406
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
407
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:383:in `_run__3455139724381387613__process_action__callbacks'
|
|
408
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
409
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
410
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
411
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
412
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `block in instrument'
|
|
413
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
414
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `instrument'
|
|
415
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
416
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
|
417
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
418
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:136:in `process'
|
|
419
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:44:in `process'
|
|
420
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:196:in `dispatch'
|
|
421
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
422
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:232:in `block in action'
|
|
423
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `call'
|
|
424
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `dispatch'
|
|
425
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:46:in `call'
|
|
426
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:69:in `block in call'
|
|
427
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `each'
|
|
428
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `call'
|
|
429
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:651:in `call'
|
|
430
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
431
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
432
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
433
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
434
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
435
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
436
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
437
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/cookies.rb:452:in `call'
|
|
438
|
+
activerecord (4.0.0.beta1) lib/active_record/query_cache.rb:36:in `call'
|
|
439
|
+
activerecord (4.0.0.beta1) lib/active_record/connection_adapters/abstract/connection_pool.rb:632:in `call'
|
|
440
|
+
activerecord (4.0.0.beta1) lib/active_record/migration.rb:348:in `call'
|
|
441
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
442
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:373:in `_run__2637407742456302889__call__callbacks'
|
|
443
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
444
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
445
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
446
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
447
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
448
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
449
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
450
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `block in call'
|
|
451
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
|
452
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
|
453
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
|
454
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `call'
|
|
455
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
456
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
457
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
458
|
+
activesupport (4.0.0.beta1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
459
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
460
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
461
|
+
railties (4.0.0.beta1) lib/rails/engine.rb:510:in `call'
|
|
462
|
+
railties (4.0.0.beta1) lib/rails/application.rb:96:in `call'
|
|
463
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
464
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
465
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
466
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
467
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
468
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.4ms)
|
|
472
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (6.4ms)
|
|
473
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (65.6ms)
|
|
474
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (114.2ms)
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
Started GET "/posts" for 127.0.0.1 at 2013-04-06 15:28:39 +0300
|
|
478
|
+
JOO
|
|
479
|
+
Processing by PostsController#index as HTML
|
|
480
|
+
Completed 500 Internal Server Error in 1ms
|
|
481
|
+
|
|
482
|
+
NoMethodError (undefined method `all' for true:TrueClass):
|
|
483
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/base_helpers.rb:25:in `collection'
|
|
484
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/actions.rb:7:in `index'
|
|
485
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
486
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:189:in `process_action'
|
|
487
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
488
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
489
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:383:in `_run__2208901037575952294__process_action__callbacks'
|
|
490
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
491
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
492
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
493
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
494
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `block in instrument'
|
|
495
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
496
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `instrument'
|
|
497
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
498
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
|
499
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
500
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:136:in `process'
|
|
501
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:44:in `process'
|
|
502
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:196:in `dispatch'
|
|
503
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
504
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:232:in `block in action'
|
|
505
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `call'
|
|
506
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `dispatch'
|
|
507
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:46:in `call'
|
|
508
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:69:in `block in call'
|
|
509
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `each'
|
|
510
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `call'
|
|
511
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:651:in `call'
|
|
512
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
513
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
514
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
515
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
516
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
517
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
518
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
519
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/cookies.rb:452:in `call'
|
|
520
|
+
activerecord (4.0.0.beta1) lib/active_record/query_cache.rb:36:in `call'
|
|
521
|
+
activerecord (4.0.0.beta1) lib/active_record/connection_adapters/abstract/connection_pool.rb:632:in `call'
|
|
522
|
+
activerecord (4.0.0.beta1) lib/active_record/migration.rb:348:in `call'
|
|
523
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
524
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:373:in `_run__2873375708648184772__call__callbacks'
|
|
525
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
526
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
527
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
528
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
529
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
530
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
531
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
532
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `block in call'
|
|
533
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
|
534
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
|
535
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
|
536
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `call'
|
|
537
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
538
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
539
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
540
|
+
activesupport (4.0.0.beta1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
541
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
542
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
543
|
+
railties (4.0.0.beta1) lib/rails/engine.rb:510:in `call'
|
|
544
|
+
railties (4.0.0.beta1) lib/rails/application.rb:96:in `call'
|
|
545
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
546
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
547
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
548
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
549
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
550
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.3ms)
|
|
554
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (6.4ms)
|
|
555
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (66.3ms)
|
|
556
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (112.7ms)
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
Started GET "/posts" for 127.0.0.1 at 2013-04-06 15:43:36 +0300
|
|
560
|
+
JOO
|
|
561
|
+
Processing by PostsController#index as HTML
|
|
562
|
+
Completed 500 Internal Server Error in 6ms
|
|
563
|
+
|
|
564
|
+
NoMethodError (undefined method `all' for true:TrueClass):
|
|
565
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/base_helpers.rb:25:in `collection'
|
|
566
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/actions.rb:7:in `index'
|
|
567
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
568
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:189:in `process_action'
|
|
569
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
570
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
571
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:383:in `_run__2208901037575952294__process_action__callbacks'
|
|
572
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
573
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
574
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
575
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
576
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `block in instrument'
|
|
577
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
578
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `instrument'
|
|
579
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
580
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
|
581
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
582
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:136:in `process'
|
|
583
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:44:in `process'
|
|
584
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:196:in `dispatch'
|
|
585
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
586
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:232:in `block in action'
|
|
587
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `call'
|
|
588
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `dispatch'
|
|
589
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:46:in `call'
|
|
590
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:69:in `block in call'
|
|
591
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `each'
|
|
592
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `call'
|
|
593
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:651:in `call'
|
|
594
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
595
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
596
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
597
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
598
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
599
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
600
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
601
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/cookies.rb:452:in `call'
|
|
602
|
+
activerecord (4.0.0.beta1) lib/active_record/query_cache.rb:36:in `call'
|
|
603
|
+
activerecord (4.0.0.beta1) lib/active_record/connection_adapters/abstract/connection_pool.rb:632:in `call'
|
|
604
|
+
activerecord (4.0.0.beta1) lib/active_record/migration.rb:348:in `call'
|
|
605
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
606
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:373:in `_run__2873375708648184772__call__callbacks'
|
|
607
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
608
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
609
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
610
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
611
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
612
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
613
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
614
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `block in call'
|
|
615
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
|
616
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
|
617
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
|
618
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `call'
|
|
619
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
620
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
621
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
622
|
+
activesupport (4.0.0.beta1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
623
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
624
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
625
|
+
railties (4.0.0.beta1) lib/rails/engine.rb:510:in `call'
|
|
626
|
+
railties (4.0.0.beta1) lib/rails/application.rb:96:in `call'
|
|
627
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
628
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
629
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
630
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
631
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
632
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
|
|
636
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.6ms)
|
|
637
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.3ms)
|
|
638
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (48.5ms)
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
Started GET "/posts" for 127.0.0.1 at 2013-04-06 15:43:38 +0300
|
|
642
|
+
Processing by PostsController#index as HTML
|
|
643
|
+
Completed 500 Internal Server Error in 1ms
|
|
644
|
+
|
|
645
|
+
NoMethodError (undefined method `all' for true:TrueClass):
|
|
646
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/base_helpers.rb:25:in `collection'
|
|
647
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/actions.rb:7:in `index'
|
|
648
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
649
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:189:in `process_action'
|
|
650
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
651
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
652
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:383:in `_run__2208901037575952294__process_action__callbacks'
|
|
653
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
654
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
655
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
656
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
657
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `block in instrument'
|
|
658
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
659
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `instrument'
|
|
660
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
661
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
|
662
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
663
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:136:in `process'
|
|
664
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:44:in `process'
|
|
665
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:196:in `dispatch'
|
|
666
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
667
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:232:in `block in action'
|
|
668
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `call'
|
|
669
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `dispatch'
|
|
670
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:46:in `call'
|
|
671
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:69:in `block in call'
|
|
672
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `each'
|
|
673
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `call'
|
|
674
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:651:in `call'
|
|
675
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
676
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
677
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
678
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
679
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
680
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
681
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
682
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/cookies.rb:452:in `call'
|
|
683
|
+
activerecord (4.0.0.beta1) lib/active_record/query_cache.rb:36:in `call'
|
|
684
|
+
activerecord (4.0.0.beta1) lib/active_record/connection_adapters/abstract/connection_pool.rb:632:in `call'
|
|
685
|
+
activerecord (4.0.0.beta1) lib/active_record/migration.rb:348:in `call'
|
|
686
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
687
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:373:in `_run__2873375708648184772__call__callbacks'
|
|
688
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
689
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
690
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
691
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
692
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
693
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
694
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
695
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `block in call'
|
|
696
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
|
697
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
|
698
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
|
699
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `call'
|
|
700
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
701
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
702
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
703
|
+
activesupport (4.0.0.beta1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
704
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
705
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
706
|
+
railties (4.0.0.beta1) lib/rails/engine.rb:510:in `call'
|
|
707
|
+
railties (4.0.0.beta1) lib/rails/application.rb:96:in `call'
|
|
708
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
709
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
710
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
711
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
712
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
713
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.6ms)
|
|
717
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (10.1ms)
|
|
718
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (8.9ms)
|
|
719
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (69.4ms)
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
Started GET "/posts" for 127.0.0.1 at 2013-04-06 15:44:15 +0300
|
|
723
|
+
Processing by PostsController#index as HTML
|
|
724
|
+
Completed 500 Internal Server Error in 1ms
|
|
725
|
+
|
|
726
|
+
NoMethodError (undefined method `all' for "Noa::Resource":String):
|
|
727
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/base_helpers.rb:25:in `collection'
|
|
728
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/actions.rb:7:in `index'
|
|
729
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
730
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:189:in `process_action'
|
|
731
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
732
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
733
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:383:in `_run__4241740559304678195__process_action__callbacks'
|
|
734
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
735
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
736
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
737
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
738
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `block in instrument'
|
|
739
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
740
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `instrument'
|
|
741
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
742
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
|
743
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
744
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:136:in `process'
|
|
745
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:44:in `process'
|
|
746
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:196:in `dispatch'
|
|
747
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
748
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:232:in `block in action'
|
|
749
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `call'
|
|
750
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `dispatch'
|
|
751
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:46:in `call'
|
|
752
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:69:in `block in call'
|
|
753
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `each'
|
|
754
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `call'
|
|
755
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:651:in `call'
|
|
756
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
757
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
758
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
759
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
760
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
761
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
762
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
763
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/cookies.rb:452:in `call'
|
|
764
|
+
activerecord (4.0.0.beta1) lib/active_record/query_cache.rb:36:in `call'
|
|
765
|
+
activerecord (4.0.0.beta1) lib/active_record/connection_adapters/abstract/connection_pool.rb:632:in `call'
|
|
766
|
+
activerecord (4.0.0.beta1) lib/active_record/migration.rb:348:in `call'
|
|
767
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
768
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:373:in `_run__796142286536777743__call__callbacks'
|
|
769
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
770
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
771
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
772
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
773
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
774
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
775
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
776
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `block in call'
|
|
777
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
|
778
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
|
779
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
|
780
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `call'
|
|
781
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
782
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
783
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
784
|
+
activesupport (4.0.0.beta1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
785
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
786
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
787
|
+
railties (4.0.0.beta1) lib/rails/engine.rb:510:in `call'
|
|
788
|
+
railties (4.0.0.beta1) lib/rails/application.rb:96:in `call'
|
|
789
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
790
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
791
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
792
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
793
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
794
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.8ms)
|
|
798
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (6.6ms)
|
|
799
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (65.5ms)
|
|
800
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (114.1ms)
|
|
801
|
+
|
|
802
|
+
|
|
803
|
+
Started GET "/posts" for 127.0.0.1 at 2013-04-06 15:44:55 +0300
|
|
804
|
+
Processing by PostsController#index as HTML
|
|
805
|
+
Completed 500 Internal Server Error in 1ms
|
|
806
|
+
|
|
807
|
+
NoMethodError (undefined method `all' for "Noa::Resource":String):
|
|
808
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/base_helpers.rb:25:in `collection'
|
|
809
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/actions.rb:7:in `index'
|
|
810
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
811
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:189:in `process_action'
|
|
812
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
813
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
814
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:383:in `_run__2445102467308441133__process_action__callbacks'
|
|
815
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
816
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
817
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
818
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
819
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `block in instrument'
|
|
820
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
821
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `instrument'
|
|
822
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
823
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
|
824
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
825
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:136:in `process'
|
|
826
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:44:in `process'
|
|
827
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:196:in `dispatch'
|
|
828
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
829
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:232:in `block in action'
|
|
830
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `call'
|
|
831
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `dispatch'
|
|
832
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:46:in `call'
|
|
833
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:69:in `block in call'
|
|
834
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `each'
|
|
835
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `call'
|
|
836
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:651:in `call'
|
|
837
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
838
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
839
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
840
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
841
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
842
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
843
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
844
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/cookies.rb:452:in `call'
|
|
845
|
+
activerecord (4.0.0.beta1) lib/active_record/query_cache.rb:36:in `call'
|
|
846
|
+
activerecord (4.0.0.beta1) lib/active_record/connection_adapters/abstract/connection_pool.rb:632:in `call'
|
|
847
|
+
activerecord (4.0.0.beta1) lib/active_record/migration.rb:348:in `call'
|
|
848
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
849
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:373:in `_run__4039647609550603018__call__callbacks'
|
|
850
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
851
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
852
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
853
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
854
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
855
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
856
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
857
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `block in call'
|
|
858
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
|
859
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
|
860
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
|
861
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `call'
|
|
862
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
863
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
864
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
865
|
+
activesupport (4.0.0.beta1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
866
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
867
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
868
|
+
railties (4.0.0.beta1) lib/rails/engine.rb:510:in `call'
|
|
869
|
+
railties (4.0.0.beta1) lib/rails/application.rb:96:in `call'
|
|
870
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
871
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
872
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
873
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
874
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
875
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
|
|
879
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (9.5ms)
|
|
880
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (84.7ms)
|
|
881
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (154.0ms)
|
|
882
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
883
|
+
[1m[35mSQL (10.5ms)[0m INSERT INTO "posts" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 06 Apr 2013 12:48:31 UTC +00:00], ["name", "foo"], ["updated_at", Sat, 06 Apr 2013 12:48:31 UTC +00:00]]
|
|
884
|
+
[1m[36m (138.1ms)[0m [1mcommit transaction[0m
|
|
885
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
886
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "posts" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sat, 06 Apr 2013 12:50:11 UTC +00:00], ["name", "bar"], ["updated_at", Sat, 06 Apr 2013 12:50:11 UTC +00:00]]
|
|
887
|
+
[1m[35m (139.0ms)[0m commit transaction
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
Started GET "/posts" for 127.0.0.1 at 2013-04-06 15:56:15 +0300
|
|
891
|
+
Processing by PostsController#index as HTML
|
|
892
|
+
DEPRECATION WARNING: Model.scoped is deprecated. Please use Model.all instead. (called from collection at /home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/base_helpers.rb:25)
|
|
893
|
+
Completed 500 Internal Server Error in 31ms
|
|
894
|
+
|
|
895
|
+
ActionView::MissingTemplate (Missing template posts/index, noa/resource/base/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
|
|
896
|
+
* "/home/jari/code/noa-resource/spec/dummy/app/views"
|
|
897
|
+
):
|
|
898
|
+
actionpack (4.0.0.beta1) lib/action_view/path_set.rb:40:in `find'
|
|
899
|
+
actionpack (4.0.0.beta1) lib/action_view/lookup_context.rb:108:in `find'
|
|
900
|
+
actionpack (4.0.0.beta1) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
|
|
901
|
+
actionpack (4.0.0.beta1) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
|
|
902
|
+
actionpack (4.0.0.beta1) lib/action_view/renderer/template_renderer.rb:8:in `render'
|
|
903
|
+
actionpack (4.0.0.beta1) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
|
904
|
+
actionpack (4.0.0.beta1) lib/action_view/renderer/renderer.rb:17:in `render'
|
|
905
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:119:in `_render_template'
|
|
906
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
|
907
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:112:in `render_to_body'
|
|
908
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
|
909
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
|
910
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:97:in `render'
|
|
911
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
912
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
|
913
|
+
activesupport (4.0.0.beta1) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
|
914
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
|
915
|
+
activesupport (4.0.0.beta1) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
|
916
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
|
917
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
|
918
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
|
919
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
|
920
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
921
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/responder.rb:233:in `default_render'
|
|
922
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/responder.rb:161:in `to_html'
|
|
923
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/responders-e7ab816eb427/lib/responders/flash_responder.rb:104:in `to_html'
|
|
924
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/responder.rb:154:in `respond'
|
|
925
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/responder.rb:147:in `call'
|
|
926
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/mime_responds.rb:330:in `respond_with'
|
|
927
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/actions.rb:7:in `index'
|
|
928
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
929
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:189:in `process_action'
|
|
930
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
931
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
932
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:383:in `_run__70783691961965896__process_action__callbacks'
|
|
933
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
934
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
935
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
936
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
937
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `block in instrument'
|
|
938
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
939
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `instrument'
|
|
940
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
941
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
|
942
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
943
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:136:in `process'
|
|
944
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:44:in `process'
|
|
945
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:196:in `dispatch'
|
|
946
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
947
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:232:in `block in action'
|
|
948
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `call'
|
|
949
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `dispatch'
|
|
950
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:46:in `call'
|
|
951
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:69:in `block in call'
|
|
952
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `each'
|
|
953
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `call'
|
|
954
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:651:in `call'
|
|
955
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
956
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
957
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
958
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
959
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
960
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
961
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
962
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/cookies.rb:452:in `call'
|
|
963
|
+
activerecord (4.0.0.beta1) lib/active_record/query_cache.rb:36:in `call'
|
|
964
|
+
activerecord (4.0.0.beta1) lib/active_record/connection_adapters/abstract/connection_pool.rb:632:in `call'
|
|
965
|
+
activerecord (4.0.0.beta1) lib/active_record/migration.rb:348:in `call'
|
|
966
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
967
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:373:in `_run__4358592733384322109__call__callbacks'
|
|
968
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
969
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
970
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
971
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
972
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
973
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
974
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
975
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `block in call'
|
|
976
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
|
977
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
|
978
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
|
979
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `call'
|
|
980
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
981
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
982
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
983
|
+
activesupport (4.0.0.beta1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
984
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
985
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
986
|
+
railties (4.0.0.beta1) lib/rails/engine.rb:510:in `call'
|
|
987
|
+
railties (4.0.0.beta1) lib/rails/application.rb:96:in `call'
|
|
988
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
989
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
990
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
991
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
992
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
993
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
994
|
+
|
|
995
|
+
|
|
996
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (6.4ms)
|
|
997
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
998
|
+
[1m[35m (157.0ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "content" text, "created_at" datetime, "updated_at" datetime)
|
|
999
|
+
[1m[36m (143.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
1000
|
+
[1m[35m (144.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
1001
|
+
[1m[36m (0.3ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
1002
|
+
[1m[35m (144.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130406105846')
|
|
1003
|
+
|
|
1004
|
+
|
|
1005
|
+
Started GET "/posts" for 127.0.0.1 at 2013-04-06 17:24:41 +0300
|
|
1006
|
+
Processing by PostsController#index as HTML
|
|
1007
|
+
DEPRECATION WARNING: Model.scoped is deprecated. Please use Model.all instead. (called from collection at /home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/base_helpers.rb:25)
|
|
1008
|
+
Completed 500 Internal Server Error in 12ms
|
|
1009
|
+
|
|
1010
|
+
ActionView::MissingTemplate (Missing template posts/index, noa/resource/base/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
|
|
1011
|
+
* "/home/jari/code/noa-resource/spec/dummy/app/views"
|
|
1012
|
+
):
|
|
1013
|
+
actionpack (4.0.0.beta1) lib/action_view/path_set.rb:40:in `find'
|
|
1014
|
+
actionpack (4.0.0.beta1) lib/action_view/lookup_context.rb:108:in `find'
|
|
1015
|
+
actionpack (4.0.0.beta1) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
|
|
1016
|
+
actionpack (4.0.0.beta1) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
|
|
1017
|
+
actionpack (4.0.0.beta1) lib/action_view/renderer/template_renderer.rb:8:in `render'
|
|
1018
|
+
actionpack (4.0.0.beta1) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
|
1019
|
+
actionpack (4.0.0.beta1) lib/action_view/renderer/renderer.rb:17:in `render'
|
|
1020
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:119:in `_render_template'
|
|
1021
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
|
1022
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:112:in `render_to_body'
|
|
1023
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
|
1024
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
|
1025
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:97:in `render'
|
|
1026
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
1027
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
|
1028
|
+
activesupport (4.0.0.beta1) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
|
1029
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
|
1030
|
+
activesupport (4.0.0.beta1) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
|
1031
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
|
1032
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
|
1033
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
|
1034
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
|
1035
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
1036
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/responder.rb:233:in `default_render'
|
|
1037
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/responder.rb:161:in `to_html'
|
|
1038
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/responders-e7ab816eb427/lib/responders/flash_responder.rb:104:in `to_html'
|
|
1039
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/responder.rb:154:in `respond'
|
|
1040
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/responder.rb:147:in `call'
|
|
1041
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/mime_responds.rb:330:in `respond_with'
|
|
1042
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/actions.rb:7:in `index'
|
|
1043
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
1044
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:189:in `process_action'
|
|
1045
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
1046
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
1047
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:383:in `_run__70783691961965896__process_action__callbacks'
|
|
1048
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
1049
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
1050
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
1051
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
1052
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `block in instrument'
|
|
1053
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
1054
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `instrument'
|
|
1055
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
1056
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
|
1057
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
1058
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:136:in `process'
|
|
1059
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:44:in `process'
|
|
1060
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:196:in `dispatch'
|
|
1061
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
1062
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:232:in `block in action'
|
|
1063
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `call'
|
|
1064
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `dispatch'
|
|
1065
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:46:in `call'
|
|
1066
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:69:in `block in call'
|
|
1067
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `each'
|
|
1068
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `call'
|
|
1069
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:651:in `call'
|
|
1070
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
1071
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
1072
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
1073
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
1074
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
1075
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
1076
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
1077
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/cookies.rb:452:in `call'
|
|
1078
|
+
activerecord (4.0.0.beta1) lib/active_record/query_cache.rb:36:in `call'
|
|
1079
|
+
activerecord (4.0.0.beta1) lib/active_record/connection_adapters/abstract/connection_pool.rb:632:in `call'
|
|
1080
|
+
activerecord (4.0.0.beta1) lib/active_record/migration.rb:348:in `call'
|
|
1081
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
1082
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:373:in `_run__4358592733384322109__call__callbacks'
|
|
1083
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
1084
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
1085
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
1086
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
1087
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
1088
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
1089
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
1090
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `block in call'
|
|
1091
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
|
1092
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
|
1093
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
|
1094
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `call'
|
|
1095
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
1096
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
1097
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
1098
|
+
activesupport (4.0.0.beta1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1099
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
1100
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
1101
|
+
railties (4.0.0.beta1) lib/rails/engine.rb:510:in `call'
|
|
1102
|
+
railties (4.0.0.beta1) lib/rails/application.rb:96:in `call'
|
|
1103
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
1104
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
1105
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
1106
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
1107
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
1108
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
1109
|
+
|
|
1110
|
+
|
|
1111
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.9ms)
|
|
1112
|
+
|
|
1113
|
+
|
|
1114
|
+
Started GET "/posts" for 127.0.0.1 at 2013-04-06 17:24:56 +0300
|
|
1115
|
+
Processing by PostsController#index as HTML
|
|
1116
|
+
DEPRECATION WARNING: Model.scoped is deprecated. Please use Model.all instead. (called from collection at /home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/base_helpers.rb:25)
|
|
1117
|
+
Completed 500 Internal Server Error in 234ms
|
|
1118
|
+
|
|
1119
|
+
ActionView::MissingTemplate (Missing template posts/index, noa/resource/base/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
|
|
1120
|
+
* "/home/jari/code/noa-resource/spec/dummy/app/views"
|
|
1121
|
+
):
|
|
1122
|
+
actionpack (4.0.0.beta1) lib/action_view/path_set.rb:40:in `find'
|
|
1123
|
+
actionpack (4.0.0.beta1) lib/action_view/lookup_context.rb:108:in `find'
|
|
1124
|
+
actionpack (4.0.0.beta1) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
|
|
1125
|
+
actionpack (4.0.0.beta1) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
|
|
1126
|
+
actionpack (4.0.0.beta1) lib/action_view/renderer/template_renderer.rb:8:in `render'
|
|
1127
|
+
actionpack (4.0.0.beta1) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
|
1128
|
+
actionpack (4.0.0.beta1) lib/action_view/renderer/renderer.rb:17:in `render'
|
|
1129
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:119:in `_render_template'
|
|
1130
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
|
1131
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:112:in `render_to_body'
|
|
1132
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
|
1133
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
|
1134
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:97:in `render'
|
|
1135
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
1136
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
|
1137
|
+
activesupport (4.0.0.beta1) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
|
1138
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
|
1139
|
+
activesupport (4.0.0.beta1) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
|
1140
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
|
1141
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
|
1142
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
|
1143
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
|
1144
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
1145
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/responder.rb:233:in `default_render'
|
|
1146
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/responder.rb:161:in `to_html'
|
|
1147
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/responders-e7ab816eb427/lib/responders/flash_responder.rb:104:in `to_html'
|
|
1148
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/responder.rb:154:in `respond'
|
|
1149
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/responder.rb:147:in `call'
|
|
1150
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/mime_responds.rb:330:in `respond_with'
|
|
1151
|
+
/home/jari/.rvm/gems/ruby-2.0.0-p0/bundler/gems/inherited_resources-71c632e32363/lib/inherited_resources/actions.rb:7:in `index'
|
|
1152
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
1153
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:189:in `process_action'
|
|
1154
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
1155
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
1156
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:383:in `_run__2715299041058826187__process_action__callbacks'
|
|
1157
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
1158
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
1159
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
1160
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
1161
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `block in instrument'
|
|
1162
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
1163
|
+
activesupport (4.0.0.beta1) lib/active_support/notifications.rb:158:in `instrument'
|
|
1164
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
1165
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
|
1166
|
+
activerecord (4.0.0.beta1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
1167
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/base.rb:136:in `process'
|
|
1168
|
+
actionpack (4.0.0.beta1) lib/abstract_controller/rendering.rb:44:in `process'
|
|
1169
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:196:in `dispatch'
|
|
1170
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
1171
|
+
actionpack (4.0.0.beta1) lib/action_controller/metal.rb:232:in `block in action'
|
|
1172
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `call'
|
|
1173
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:78:in `dispatch'
|
|
1174
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:46:in `call'
|
|
1175
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:69:in `block in call'
|
|
1176
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `each'
|
|
1177
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/journey/router.rb:57:in `call'
|
|
1178
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/routing/route_set.rb:651:in `call'
|
|
1179
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
1180
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
1181
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
1182
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
1183
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
|
1184
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
1185
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
1186
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/cookies.rb:452:in `call'
|
|
1187
|
+
activerecord (4.0.0.beta1) lib/active_record/query_cache.rb:36:in `call'
|
|
1188
|
+
activerecord (4.0.0.beta1) lib/active_record/connection_adapters/abstract/connection_pool.rb:632:in `call'
|
|
1189
|
+
activerecord (4.0.0.beta1) lib/active_record/migration.rb:348:in `call'
|
|
1190
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
1191
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:373:in `_run__619444819790921673__call__callbacks'
|
|
1192
|
+
activesupport (4.0.0.beta1) lib/active_support/callbacks.rb:78:in `run_callbacks'
|
|
1193
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
1194
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
|
1195
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
1196
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
1197
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
1198
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
1199
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `block in call'
|
|
1200
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
|
1201
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
|
1202
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
|
1203
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `call'
|
|
1204
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
1205
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
1206
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
1207
|
+
activesupport (4.0.0.beta1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1208
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
1209
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
1210
|
+
railties (4.0.0.beta1) lib/rails/engine.rb:510:in `call'
|
|
1211
|
+
railties (4.0.0.beta1) lib/rails/application.rb:96:in `call'
|
|
1212
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
1213
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
1214
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
1215
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
1216
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
1217
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
1218
|
+
|
|
1219
|
+
|
|
1220
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.4ms)
|
|
1221
|
+
|
|
1222
|
+
|
|
1223
|
+
Started GET "/" for 127.0.0.1 at 2013-04-06 17:25:00 +0300
|
|
1224
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
1225
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/railties-4.0.0.beta1/lib/rails/templates/rails/welcome/index.html.erb (1.1ms)
|
|
1226
|
+
Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
|
|
1227
|
+
|
|
1228
|
+
|
|
1229
|
+
Started GET "/assets/rails.png" for 127.0.0.1 at 2013-04-06 17:25:00 +0300
|
|
1230
|
+
|
|
1231
|
+
ActionController::RoutingError (No route matches [GET] "/assets/rails.png"):
|
|
1232
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
1233
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
1234
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:38:in `call_app'
|
|
1235
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `block in call'
|
|
1236
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
|
1237
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
|
1238
|
+
activesupport (4.0.0.beta1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
|
1239
|
+
railties (4.0.0.beta1) lib/rails/rack/logger.rb:21:in `call'
|
|
1240
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
1241
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
1242
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
1243
|
+
activesupport (4.0.0.beta1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1244
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
1245
|
+
actionpack (4.0.0.beta1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
1246
|
+
railties (4.0.0.beta1) lib/rails/engine.rb:510:in `call'
|
|
1247
|
+
railties (4.0.0.beta1) lib/rails/application.rb:96:in `call'
|
|
1248
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
1249
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
1250
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
1251
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
1252
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
1253
|
+
/home/jari/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
1254
|
+
|
|
1255
|
+
|
|
1256
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
|
|
1257
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms)
|
|
1258
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.7ms)
|
|
1259
|
+
Rendered /home/jari/.rvm/gems/ruby-2.0.0-p0/gems/actionpack-4.0.0.beta1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (79.8ms)
|