influxdb-rails 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +95 -0
- data/README.md +3 -0
- data/Rakefile +34 -0
- data/config.ru +7 -0
- data/gemfiles/Gemfile.rails-3.0.x +8 -0
- data/gemfiles/Gemfile.rails-3.0.x.lock +94 -0
- data/gemfiles/Gemfile.rails-3.1.x +8 -0
- data/gemfiles/Gemfile.rails-3.1.x.lock +121 -0
- data/gemfiles/Gemfile.rails-3.2.x +8 -0
- data/gemfiles/Gemfile.rails-3.2.x.lock +104 -0
- data/gemfiles/Gemfile.rails-4.0.x +8 -0
- data/gemfiles/Gemfile.rails-4.0.x.lock +109 -0
- data/generators/influxdb/influxdb_generator.rb +48 -0
- data/generators/influxdb/templates/initializer.rb +5 -0
- data/influxdb-rails.gemspec +33 -0
- data/lib/influxdb-rails.rb +82 -0
- data/lib/influxdb/rails/air_traffic_controller.rb +39 -0
- data/lib/influxdb/rails/backtrace.rb +44 -0
- data/lib/influxdb/rails/configuration.rb +117 -0
- data/lib/influxdb/rails/exception_presenter.rb +90 -0
- data/lib/influxdb/rails/instrumentation.rb +27 -0
- data/lib/influxdb/rails/logger.rb +13 -0
- data/lib/influxdb/rails/middleware/hijack_render_exception.rb +21 -0
- data/lib/influxdb/rails/middleware/hijack_rescue_action_everywhere.rb +32 -0
- data/lib/influxdb/rails/rack.rb +28 -0
- data/lib/influxdb/rails/rails.rb +39 -0
- data/lib/influxdb/rails/railtie.rb +67 -0
- data/lib/influxdb/rails/version.rb +5 -0
- data/lib/rails/generators/influxdb/influxdb_generator.rb +52 -0
- data/lib/rails/generators/influxdb/templates/initializer.rb +4 -0
- data/spec/controllers/widgets_controller_spec.rb +15 -0
- data/spec/integration/exceptions_spec.rb +37 -0
- data/spec/integration/integration_helper.rb +1 -0
- data/spec/spec_helper.rb +29 -0
- data/spec/suite.sh +42 -0
- data/spec/support/rails3/app.rb +24 -0
- data/spec/support/rails3/log/test.log +1120 -0
- data/spec/support/rails4/app.rb +27 -0
- data/spec/unit/backtrace_spec.rb +88 -0
- data/spec/unit/configuration_spec.rb +29 -0
- data/spec/unit/exception_presenter_spec.rb +69 -0
- data/spec/unit/influxdb_rails_spec.rb +67 -0
- metadata +226 -0
@@ -0,0 +1 @@
|
|
1
|
+
require File.dirname(__FILE__) + "/../spec_helper"
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
2
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
3
|
+
ENV["RAILS_ENV"] ||= "test"
|
4
|
+
|
5
|
+
require "rails"
|
6
|
+
|
7
|
+
unless Rails::VERSION::MAJOR > 2
|
8
|
+
raise "Sorry, influxdb-rails only supports Rails 3.x and higher."
|
9
|
+
end
|
10
|
+
|
11
|
+
require 'bundler/setup'
|
12
|
+
Bundler.require
|
13
|
+
|
14
|
+
require "fakeweb"
|
15
|
+
FakeWeb.allow_net_connect = false
|
16
|
+
|
17
|
+
if defined? Rails
|
18
|
+
puts "Loading Rails v#{Rails.version}..."
|
19
|
+
|
20
|
+
if Rails.version.to_f < 3.0
|
21
|
+
raise "Sorry, Rails v#{Rails.version} isn't supported. Try upgrading to Rails 3.x or higher."
|
22
|
+
elsif Rails.version.to_f < 4.0
|
23
|
+
require "support/rails3/app"
|
24
|
+
require "rspec/rails"
|
25
|
+
else
|
26
|
+
require "support/rails4/app"
|
27
|
+
require "rspec/rails"
|
28
|
+
end
|
29
|
+
end
|
data/spec/suite.sh
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
if [[ -s "$HOME/.rvm/scripts/rvm" ]] ; then
|
4
|
+
source "$HOME/.rvm/scripts/rvm"
|
5
|
+
elif [[ -s "/usr/local/rvm/scripts/rvm" ]] ; then
|
6
|
+
source "/usr/local/rvm/scripts/rvm"
|
7
|
+
else
|
8
|
+
printf "ERROR: An RVM installation was not found.\n"
|
9
|
+
fi
|
10
|
+
|
11
|
+
function build_version() {
|
12
|
+
echo "Bundling for Rails $1..."
|
13
|
+
BUNDLE_GEMFILE=gemfiles/Gemfile.rails-$1 bundle install --quiet
|
14
|
+
BUNDLE_GEMFILE=gemfiles/Gemfile.rails-$1 bundle exec rake spec
|
15
|
+
}
|
16
|
+
|
17
|
+
function build_versions() {
|
18
|
+
build_version "3.2.x"
|
19
|
+
build_version "3.1.x"
|
20
|
+
build_version "3.0.x"
|
21
|
+
build_version "2.3.x"
|
22
|
+
}
|
23
|
+
|
24
|
+
function build_with_ruby() {
|
25
|
+
echo
|
26
|
+
echo "### Using Ruby v$1 ###"
|
27
|
+
|
28
|
+
rvm use ruby-$1@influxdb-rails --create
|
29
|
+
build_versions
|
30
|
+
}
|
31
|
+
|
32
|
+
function build() {
|
33
|
+
build_with_ruby "1.9.3-p194"
|
34
|
+
build_with_ruby "ree"
|
35
|
+
build_with_ruby "1.8.7-p357"
|
36
|
+
}
|
37
|
+
|
38
|
+
function clean() {
|
39
|
+
rvm gemset empty influxdb-rails --force
|
40
|
+
}
|
41
|
+
|
42
|
+
build
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require 'action_controller/railtie'
|
2
|
+
|
3
|
+
app = Class.new(Rails::Application)
|
4
|
+
app.config.secret_token = '1234567890abcdef1234567890abcdef'
|
5
|
+
app.config.session_store :cookie_store, :key => '_myapp_session'
|
6
|
+
app.config.active_support.deprecation = :log
|
7
|
+
app.config.root = File.dirname(__FILE__)
|
8
|
+
Rails.backtrace_cleaner.remove_silencers!
|
9
|
+
app.initialize!
|
10
|
+
|
11
|
+
app.routes.draw do
|
12
|
+
resources :widgets
|
13
|
+
end
|
14
|
+
|
15
|
+
InfluxDB::Rails.configure do |config|
|
16
|
+
end
|
17
|
+
|
18
|
+
class ApplicationController < ActionController::Base; end
|
19
|
+
class WidgetsController < ApplicationController
|
20
|
+
def index; render :nothing => true; end
|
21
|
+
def new; return 1/0; end
|
22
|
+
end
|
23
|
+
|
24
|
+
Object.const_set(:ApplicationHelper, Module.new)
|
@@ -0,0 +1,1120 @@
|
|
1
|
+
Processing by WidgetsController#new as HTML
|
2
|
+
Completed 500 Internal Server Error in 0.2ms
|
3
|
+
Processing by WidgetsController#index as HTML
|
4
|
+
Completed 200 OK in 18.8ms (Views: 18.7ms)
|
5
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:07:48 -0500
|
6
|
+
Processing by WidgetsController#new as HTML
|
7
|
+
Completed 500 Internal Server Error in 0.2ms
|
8
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 14:07:48 -0500
|
9
|
+
Processing by WidgetsController#index as HTML
|
10
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
11
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:07:48 -0500
|
12
|
+
Processing by WidgetsController#new as HTML
|
13
|
+
Completed 500 Internal Server Error in 0.2ms
|
14
|
+
Processing by WidgetsController#new as HTML
|
15
|
+
Completed 500 Internal Server Error in 0.2ms
|
16
|
+
Processing by WidgetsController#index as HTML
|
17
|
+
Completed 200 OK in 16.2ms (Views: 16.1ms)
|
18
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:08:51 -0500
|
19
|
+
Processing by WidgetsController#new as HTML
|
20
|
+
Completed 500 Internal Server Error in 0.2ms
|
21
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 14:08:51 -0500
|
22
|
+
Processing by WidgetsController#index as HTML
|
23
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
24
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:08:51 -0500
|
25
|
+
Processing by WidgetsController#new as HTML
|
26
|
+
Completed 500 Internal Server Error in 0.2ms
|
27
|
+
Processing by WidgetsController#new as HTML
|
28
|
+
Completed 500 Internal Server Error in 0.2ms
|
29
|
+
Processing by WidgetsController#index as HTML
|
30
|
+
Completed 200 OK in 16.2ms (Views: 16.1ms)
|
31
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:09:33 -0500
|
32
|
+
Processing by WidgetsController#new as HTML
|
33
|
+
Completed 500 Internal Server Error in 0.2ms
|
34
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 14:09:33 -0500
|
35
|
+
Processing by WidgetsController#index as HTML
|
36
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
37
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:09:33 -0500
|
38
|
+
Processing by WidgetsController#new as HTML
|
39
|
+
Completed 500 Internal Server Error in 0.1ms
|
40
|
+
Processing by WidgetsController#new as HTML
|
41
|
+
Completed 500 Internal Server Error in 0.2ms
|
42
|
+
Processing by WidgetsController#index as HTML
|
43
|
+
Completed 200 OK in 16.4ms (Views: 16.2ms)
|
44
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:09:47 -0500
|
45
|
+
Processing by WidgetsController#new as HTML
|
46
|
+
Completed 500 Internal Server Error in 0.2ms
|
47
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 14:09:47 -0500
|
48
|
+
Processing by WidgetsController#index as HTML
|
49
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
50
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:09:47 -0500
|
51
|
+
Processing by WidgetsController#new as HTML
|
52
|
+
Completed 500 Internal Server Error in 0.1ms
|
53
|
+
Processing by WidgetsController#new as HTML
|
54
|
+
Completed 500 Internal Server Error in 0.2ms
|
55
|
+
Processing by WidgetsController#index as HTML
|
56
|
+
Completed 200 OK in 16.0ms (Views: 15.9ms)
|
57
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:09:58 -0500
|
58
|
+
Processing by WidgetsController#new as HTML
|
59
|
+
Completed 500 Internal Server Error in 0.2ms
|
60
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 14:09:58 -0500
|
61
|
+
Processing by WidgetsController#index as HTML
|
62
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
63
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:09:58 -0500
|
64
|
+
Processing by WidgetsController#new as HTML
|
65
|
+
Completed 500 Internal Server Error in 0.2ms
|
66
|
+
Processing by WidgetsController#new as HTML
|
67
|
+
Completed 500 Internal Server Error in 0.2ms
|
68
|
+
Processing by WidgetsController#index as HTML
|
69
|
+
Completed 200 OK in 16.2ms (Views: 16.1ms)
|
70
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:10:41 -0500
|
71
|
+
Processing by WidgetsController#new as HTML
|
72
|
+
Completed 500 Internal Server Error in 0.2ms
|
73
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 14:10:41 -0500
|
74
|
+
Processing by WidgetsController#index as HTML
|
75
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
76
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:10:41 -0500
|
77
|
+
Processing by WidgetsController#new as HTML
|
78
|
+
Completed 500 Internal Server Error in 0.1ms
|
79
|
+
Processing by WidgetsController#new as HTML
|
80
|
+
Completed 500 Internal Server Error in 0.2ms
|
81
|
+
Processing by WidgetsController#index as HTML
|
82
|
+
Completed 200 OK in 16.5ms (Views: 16.4ms)
|
83
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:47:48 -0500
|
84
|
+
Processing by WidgetsController#new as HTML
|
85
|
+
Completed 500 Internal Server Error in 0.2ms
|
86
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 14:47:48 -0500
|
87
|
+
Processing by WidgetsController#index as HTML
|
88
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
89
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:47:48 -0500
|
90
|
+
Processing by WidgetsController#new as HTML
|
91
|
+
Completed 500 Internal Server Error in 0.1ms
|
92
|
+
Processing by WidgetsController#new as HTML
|
93
|
+
Completed 500 Internal Server Error in 0.2ms
|
94
|
+
Processing by WidgetsController#index as HTML
|
95
|
+
Completed 200 OK in 16.1ms (Views: 16.0ms)
|
96
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:47:59 -0500
|
97
|
+
Processing by WidgetsController#new as HTML
|
98
|
+
Completed 500 Internal Server Error in 0.2ms
|
99
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 14:47:59 -0500
|
100
|
+
Processing by WidgetsController#index as HTML
|
101
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
102
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:47:59 -0500
|
103
|
+
Processing by WidgetsController#new as HTML
|
104
|
+
Completed 500 Internal Server Error in 0.1ms
|
105
|
+
Processing by WidgetsController#new as HTML
|
106
|
+
Completed 500 Internal Server Error in 0.2ms
|
107
|
+
Processing by WidgetsController#index as HTML
|
108
|
+
Completed 200 OK in 15.8ms (Views: 15.7ms)
|
109
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:48:06 -0500
|
110
|
+
Processing by WidgetsController#new as HTML
|
111
|
+
Completed 500 Internal Server Error in 0.2ms
|
112
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 14:48:06 -0500
|
113
|
+
Processing by WidgetsController#index as HTML
|
114
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
115
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:48:06 -0500
|
116
|
+
Processing by WidgetsController#new as HTML
|
117
|
+
Completed 500 Internal Server Error in 0.1ms
|
118
|
+
Processing by WidgetsController#new as HTML
|
119
|
+
Completed 500 Internal Server Error in 0.2ms
|
120
|
+
Processing by WidgetsController#index as HTML
|
121
|
+
Completed 200 OK in 15.6ms (Views: 15.5ms)
|
122
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:50:23 -0500
|
123
|
+
Processing by WidgetsController#new as HTML
|
124
|
+
Completed 500 Internal Server Error in 0.2ms
|
125
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 14:50:23 -0500
|
126
|
+
Processing by WidgetsController#index as HTML
|
127
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
128
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:50:23 -0500
|
129
|
+
Processing by WidgetsController#new as HTML
|
130
|
+
Completed 500 Internal Server Error in 0.1ms
|
131
|
+
Processing by WidgetsController#new as HTML
|
132
|
+
Completed 500 Internal Server Error in 0.2ms
|
133
|
+
Processing by WidgetsController#index as HTML
|
134
|
+
Completed 200 OK in 15.7ms (Views: 15.5ms)
|
135
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:50:56 -0500
|
136
|
+
Processing by WidgetsController#new as HTML
|
137
|
+
Completed 500 Internal Server Error in 0.2ms
|
138
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 14:50:56 -0500
|
139
|
+
Processing by WidgetsController#index as HTML
|
140
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
141
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:50:56 -0500
|
142
|
+
Processing by WidgetsController#new as HTML
|
143
|
+
Completed 500 Internal Server Error in 0.1ms
|
144
|
+
Processing by WidgetsController#new as HTML
|
145
|
+
Completed 500 Internal Server Error in 0.2ms
|
146
|
+
Processing by WidgetsController#index as HTML
|
147
|
+
Completed 200 OK in 16.3ms (Views: 16.1ms)
|
148
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:58:33 -0500
|
149
|
+
Processing by WidgetsController#new as HTML
|
150
|
+
Completed 500 Internal Server Error in 0.2ms
|
151
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 14:58:33 -0500
|
152
|
+
Processing by WidgetsController#index as HTML
|
153
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
154
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 14:58:33 -0500
|
155
|
+
Processing by WidgetsController#new as HTML
|
156
|
+
Completed 500 Internal Server Error in 0.2ms
|
157
|
+
Processing by WidgetsController#new as HTML
|
158
|
+
Completed 500 Internal Server Error in 0.2ms
|
159
|
+
Processing by WidgetsController#index as HTML
|
160
|
+
Completed 200 OK in 16.3ms (Views: 16.2ms)
|
161
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:33:01 -0500
|
162
|
+
Processing by WidgetsController#new as HTML
|
163
|
+
Completed 500 Internal Server Error in 0.2ms
|
164
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 15:33:01 -0500
|
165
|
+
Processing by WidgetsController#index as HTML
|
166
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
167
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:33:01 -0500
|
168
|
+
Processing by WidgetsController#new as HTML
|
169
|
+
Completed 500 Internal Server Error in 0.1ms
|
170
|
+
Processing by WidgetsController#new as HTML
|
171
|
+
Completed 500 Internal Server Error in 0.2ms
|
172
|
+
Processing by WidgetsController#index as HTML
|
173
|
+
Completed 200 OK in 16.1ms (Views: 15.9ms)
|
174
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:37:42 -0500
|
175
|
+
Processing by WidgetsController#new as HTML
|
176
|
+
Completed 500 Internal Server Error in 0.2ms
|
177
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 15:37:42 -0500
|
178
|
+
Processing by WidgetsController#index as HTML
|
179
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
180
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:37:42 -0500
|
181
|
+
Processing by WidgetsController#new as HTML
|
182
|
+
Completed 500 Internal Server Error in 0.1ms
|
183
|
+
Processing by WidgetsController#new as HTML
|
184
|
+
Completed 500 Internal Server Error in 0.3ms
|
185
|
+
Processing by WidgetsController#index as HTML
|
186
|
+
Completed 200 OK in 15.8ms (Views: 15.7ms)
|
187
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:38:36 -0500
|
188
|
+
Processing by WidgetsController#new as HTML
|
189
|
+
Completed 500 Internal Server Error in 0.2ms
|
190
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 15:38:36 -0500
|
191
|
+
Processing by WidgetsController#index as HTML
|
192
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
193
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:38:36 -0500
|
194
|
+
Processing by WidgetsController#new as HTML
|
195
|
+
Completed 500 Internal Server Error in 0.1ms
|
196
|
+
Processing by WidgetsController#new as HTML
|
197
|
+
Completed 500 Internal Server Error in 0.2ms
|
198
|
+
Processing by WidgetsController#index as HTML
|
199
|
+
Completed 200 OK in 16.3ms (Views: 16.1ms)
|
200
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:39:31 -0500
|
201
|
+
Processing by WidgetsController#new as HTML
|
202
|
+
Completed 500 Internal Server Error in 0.2ms
|
203
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 15:39:31 -0500
|
204
|
+
Processing by WidgetsController#index as HTML
|
205
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
206
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:39:31 -0500
|
207
|
+
Processing by WidgetsController#new as HTML
|
208
|
+
Completed 500 Internal Server Error in 0.1ms
|
209
|
+
Processing by WidgetsController#new as HTML
|
210
|
+
Completed 500 Internal Server Error in 0.2ms
|
211
|
+
Processing by WidgetsController#index as HTML
|
212
|
+
Completed 200 OK in 17.2ms (Views: 17.1ms)
|
213
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:39:45 -0500
|
214
|
+
Processing by WidgetsController#new as HTML
|
215
|
+
Completed 500 Internal Server Error in 0.2ms
|
216
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 15:39:45 -0500
|
217
|
+
Processing by WidgetsController#index as HTML
|
218
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
219
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:39:45 -0500
|
220
|
+
Processing by WidgetsController#new as HTML
|
221
|
+
Completed 500 Internal Server Error in 0.1ms
|
222
|
+
Processing by WidgetsController#new as HTML
|
223
|
+
Completed 500 Internal Server Error in 0.2ms
|
224
|
+
Processing by WidgetsController#index as HTML
|
225
|
+
Completed 200 OK in 15.9ms (Views: 15.8ms)
|
226
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:40:07 -0500
|
227
|
+
Processing by WidgetsController#new as HTML
|
228
|
+
Completed 500 Internal Server Error in 0.2ms
|
229
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 15:40:07 -0500
|
230
|
+
Processing by WidgetsController#index as HTML
|
231
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
232
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:40:07 -0500
|
233
|
+
Processing by WidgetsController#new as HTML
|
234
|
+
Completed 500 Internal Server Error in 0.1ms
|
235
|
+
Processing by WidgetsController#new as HTML
|
236
|
+
Completed 500 Internal Server Error in 0.2ms
|
237
|
+
Processing by WidgetsController#index as HTML
|
238
|
+
Completed 200 OK in 16.2ms (Views: 16.1ms)
|
239
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:40:27 -0500
|
240
|
+
Processing by WidgetsController#new as HTML
|
241
|
+
Completed 500 Internal Server Error in 0.2ms
|
242
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 15:40:27 -0500
|
243
|
+
Processing by WidgetsController#index as HTML
|
244
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
245
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:40:27 -0500
|
246
|
+
Processing by WidgetsController#new as HTML
|
247
|
+
Completed 500 Internal Server Error in 0.1ms
|
248
|
+
Processing by WidgetsController#new as HTML
|
249
|
+
Completed 500 Internal Server Error in 0.2ms
|
250
|
+
Processing by WidgetsController#index as HTML
|
251
|
+
Completed 200 OK in 15.6ms (Views: 15.5ms)
|
252
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:40:56 -0500
|
253
|
+
Processing by WidgetsController#new as HTML
|
254
|
+
Completed 500 Internal Server Error in 0.2ms
|
255
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 15:40:56 -0500
|
256
|
+
Processing by WidgetsController#index as HTML
|
257
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
258
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:40:56 -0500
|
259
|
+
Processing by WidgetsController#new as HTML
|
260
|
+
Completed 500 Internal Server Error in 0.1ms
|
261
|
+
Processing by WidgetsController#new as HTML
|
262
|
+
Completed 500 Internal Server Error in 0.2ms
|
263
|
+
Processing by WidgetsController#index as HTML
|
264
|
+
Completed 200 OK in 16.0ms (Views: 15.8ms)
|
265
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:41:15 -0500
|
266
|
+
Processing by WidgetsController#new as HTML
|
267
|
+
Completed 500 Internal Server Error in 0.2ms
|
268
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 15:41:15 -0500
|
269
|
+
Processing by WidgetsController#index as HTML
|
270
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
271
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:41:15 -0500
|
272
|
+
Processing by WidgetsController#new as HTML
|
273
|
+
Completed 500 Internal Server Error in 0.2ms
|
274
|
+
Processing by WidgetsController#new as HTML
|
275
|
+
Completed 500 Internal Server Error in 0.2ms
|
276
|
+
Processing by WidgetsController#index as HTML
|
277
|
+
Completed 200 OK in 16.7ms (Views: 16.6ms)
|
278
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:43:11 -0500
|
279
|
+
Processing by WidgetsController#new as HTML
|
280
|
+
Completed 500 Internal Server Error in 0.1ms
|
281
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 15:43:11 -0500
|
282
|
+
Processing by WidgetsController#index as HTML
|
283
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
284
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:43:11 -0500
|
285
|
+
Processing by WidgetsController#new as HTML
|
286
|
+
Completed 500 Internal Server Error in 0.1ms
|
287
|
+
Processing by WidgetsController#new as HTML
|
288
|
+
Completed 500 Internal Server Error in 0.2ms
|
289
|
+
Processing by WidgetsController#index as HTML
|
290
|
+
Completed 200 OK in 15.6ms (Views: 15.5ms)
|
291
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:48:35 -0500
|
292
|
+
Processing by WidgetsController#new as HTML
|
293
|
+
Completed 500 Internal Server Error in 0.2ms
|
294
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 15:48:35 -0500
|
295
|
+
Processing by WidgetsController#index as HTML
|
296
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
297
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:48:35 -0500
|
298
|
+
Processing by WidgetsController#new as HTML
|
299
|
+
Completed 500 Internal Server Error in 0.1ms
|
300
|
+
Processing by WidgetsController#new as HTML
|
301
|
+
Completed 500 Internal Server Error in 0.2ms
|
302
|
+
Processing by WidgetsController#index as HTML
|
303
|
+
Completed 200 OK in 15.9ms (Views: 15.8ms)
|
304
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:49:22 -0500
|
305
|
+
Processing by WidgetsController#new as HTML
|
306
|
+
Completed 500 Internal Server Error in 0.1ms
|
307
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 15:49:22 -0500
|
308
|
+
Processing by WidgetsController#index as HTML
|
309
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
310
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:49:22 -0500
|
311
|
+
Processing by WidgetsController#new as HTML
|
312
|
+
Completed 500 Internal Server Error in 0.1ms
|
313
|
+
Processing by WidgetsController#new as HTML
|
314
|
+
Completed 500 Internal Server Error in 0.2ms
|
315
|
+
Processing by WidgetsController#index as HTML
|
316
|
+
Completed 200 OK in 15.8ms (Views: 15.7ms)
|
317
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:51:01 -0500
|
318
|
+
Processing by WidgetsController#new as HTML
|
319
|
+
Completed 500 Internal Server Error in 0.2ms
|
320
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 15:51:01 -0500
|
321
|
+
Processing by WidgetsController#index as HTML
|
322
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
323
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:51:01 -0500
|
324
|
+
Processing by WidgetsController#new as HTML
|
325
|
+
Completed 500 Internal Server Error in 0.1ms
|
326
|
+
Processing by WidgetsController#new as HTML
|
327
|
+
Completed 500 Internal Server Error in 0.2ms
|
328
|
+
Processing by WidgetsController#index as HTML
|
329
|
+
Completed 200 OK in 16.4ms (Views: 16.2ms)
|
330
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:51:05 -0500
|
331
|
+
Processing by WidgetsController#new as HTML
|
332
|
+
Completed 500 Internal Server Error in 0.2ms
|
333
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 15:51:05 -0500
|
334
|
+
Processing by WidgetsController#index as HTML
|
335
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
336
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:51:05 -0500
|
337
|
+
Processing by WidgetsController#new as HTML
|
338
|
+
Completed 500 Internal Server Error in 0.1ms
|
339
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:51:13 -0500
|
340
|
+
Processing by WidgetsController#new as HTML
|
341
|
+
Completed 500 Internal Server Error in 0.2ms
|
342
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 15:51:13 -0500
|
343
|
+
Processing by WidgetsController#index as HTML
|
344
|
+
Completed 200 OK in 16.9ms (Views: 16.8ms)
|
345
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 15:51:13 -0500
|
346
|
+
Processing by WidgetsController#new as HTML
|
347
|
+
Completed 500 Internal Server Error in 0.2ms
|
348
|
+
Processing by WidgetsController#new as HTML
|
349
|
+
Completed 500 Internal Server Error in 0.2ms
|
350
|
+
Processing by WidgetsController#index as HTML
|
351
|
+
Completed 200 OK in 16.3ms (Views: 16.2ms)
|
352
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:00:54 -0500
|
353
|
+
Processing by WidgetsController#new as HTML
|
354
|
+
Completed 500 Internal Server Error in 0.2ms
|
355
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:00:54 -0500
|
356
|
+
Processing by WidgetsController#index as HTML
|
357
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
358
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:00:54 -0500
|
359
|
+
Processing by WidgetsController#new as HTML
|
360
|
+
Completed 500 Internal Server Error in 0.1ms
|
361
|
+
Processing by WidgetsController#new as HTML
|
362
|
+
Completed 500 Internal Server Error in 0.2ms
|
363
|
+
Processing by WidgetsController#index as HTML
|
364
|
+
Completed 200 OK in 16.7ms (Views: 16.6ms)
|
365
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:02:22 -0500
|
366
|
+
Processing by WidgetsController#new as HTML
|
367
|
+
Completed 500 Internal Server Error in 0.2ms
|
368
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:02:22 -0500
|
369
|
+
Processing by WidgetsController#index as HTML
|
370
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
371
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:02:22 -0500
|
372
|
+
Processing by WidgetsController#new as HTML
|
373
|
+
Completed 500 Internal Server Error in 0.2ms
|
374
|
+
Processing by WidgetsController#new as HTML
|
375
|
+
Completed 500 Internal Server Error in 0.2ms
|
376
|
+
Processing by WidgetsController#index as HTML
|
377
|
+
Completed 200 OK in 16.2ms (Views: 16.1ms)
|
378
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:06:17 -0500
|
379
|
+
Processing by WidgetsController#new as HTML
|
380
|
+
Completed 500 Internal Server Error in 0.2ms
|
381
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:06:17 -0500
|
382
|
+
Processing by WidgetsController#index as HTML
|
383
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
384
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:06:17 -0500
|
385
|
+
Processing by WidgetsController#new as HTML
|
386
|
+
Completed 500 Internal Server Error in 0.1ms
|
387
|
+
Processing by WidgetsController#new as HTML
|
388
|
+
Completed 500 Internal Server Error in 0.2ms
|
389
|
+
Processing by WidgetsController#index as HTML
|
390
|
+
Completed 200 OK in 15.7ms (Views: 15.6ms)
|
391
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:07:19 -0500
|
392
|
+
Processing by WidgetsController#new as HTML
|
393
|
+
Completed 500 Internal Server Error in 0.2ms
|
394
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:07:19 -0500
|
395
|
+
Processing by WidgetsController#index as HTML
|
396
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
397
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:07:19 -0500
|
398
|
+
Processing by WidgetsController#new as HTML
|
399
|
+
Completed 500 Internal Server Error in 0.1ms
|
400
|
+
Processing by WidgetsController#new as HTML
|
401
|
+
Completed 500 Internal Server Error in 0.2ms
|
402
|
+
Processing by WidgetsController#index as HTML
|
403
|
+
Completed 200 OK in 17.6ms (Views: 17.5ms)
|
404
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:09:16 -0500
|
405
|
+
Processing by WidgetsController#new as HTML
|
406
|
+
Completed 500 Internal Server Error in 0.2ms
|
407
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:09:16 -0500
|
408
|
+
Processing by WidgetsController#index as HTML
|
409
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
410
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:09:16 -0500
|
411
|
+
Processing by WidgetsController#new as HTML
|
412
|
+
Completed 500 Internal Server Error in 0.1ms
|
413
|
+
Processing by WidgetsController#new as HTML
|
414
|
+
Completed 500 Internal Server Error in 0.2ms
|
415
|
+
Processing by WidgetsController#index as HTML
|
416
|
+
Completed 200 OK in 16.5ms (Views: 16.4ms)
|
417
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:09:40 -0500
|
418
|
+
Processing by WidgetsController#new as HTML
|
419
|
+
Completed 500 Internal Server Error in 0.2ms
|
420
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:09:40 -0500
|
421
|
+
Processing by WidgetsController#index as HTML
|
422
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
423
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:09:40 -0500
|
424
|
+
Processing by WidgetsController#new as HTML
|
425
|
+
Completed 500 Internal Server Error in 0.1ms
|
426
|
+
Processing by WidgetsController#new as HTML
|
427
|
+
Completed 500 Internal Server Error in 0.2ms
|
428
|
+
Processing by WidgetsController#index as HTML
|
429
|
+
Completed 200 OK in 16.7ms (Views: 16.5ms)
|
430
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:12:59 -0500
|
431
|
+
Processing by WidgetsController#new as HTML
|
432
|
+
Completed 500 Internal Server Error in 0.1ms
|
433
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:12:59 -0500
|
434
|
+
Processing by WidgetsController#index as HTML
|
435
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
436
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:12:59 -0500
|
437
|
+
Processing by WidgetsController#new as HTML
|
438
|
+
Completed 500 Internal Server Error in 0.1ms
|
439
|
+
Processing by WidgetsController#new as HTML
|
440
|
+
Completed 500 Internal Server Error in 0.3ms
|
441
|
+
Processing by WidgetsController#index as HTML
|
442
|
+
Completed 200 OK in 16.6ms (Views: 16.5ms)
|
443
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:13:20 -0500
|
444
|
+
Processing by WidgetsController#new as HTML
|
445
|
+
Completed 500 Internal Server Error in 0.1ms
|
446
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:13:20 -0500
|
447
|
+
Processing by WidgetsController#index as HTML
|
448
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
449
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:13:20 -0500
|
450
|
+
Processing by WidgetsController#new as HTML
|
451
|
+
Completed 500 Internal Server Error in 0.1ms
|
452
|
+
Processing by WidgetsController#new as HTML
|
453
|
+
Completed 500 Internal Server Error in 0.2ms
|
454
|
+
Processing by WidgetsController#index as HTML
|
455
|
+
Completed 200 OK in 15.8ms (Views: 15.7ms)
|
456
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:13:37 -0500
|
457
|
+
Processing by WidgetsController#new as HTML
|
458
|
+
Completed 500 Internal Server Error in 0.2ms
|
459
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:13:37 -0500
|
460
|
+
Processing by WidgetsController#index as HTML
|
461
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
462
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:13:37 -0500
|
463
|
+
Processing by WidgetsController#new as HTML
|
464
|
+
Completed 500 Internal Server Error in 0.1ms
|
465
|
+
Processing by WidgetsController#new as HTML
|
466
|
+
Completed 500 Internal Server Error in 0.2ms
|
467
|
+
Processing by WidgetsController#index as HTML
|
468
|
+
Completed 200 OK in 15.7ms (Views: 15.6ms)
|
469
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:13:56 -0500
|
470
|
+
Processing by WidgetsController#new as HTML
|
471
|
+
Completed 500 Internal Server Error in 0.2ms
|
472
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:13:56 -0500
|
473
|
+
Processing by WidgetsController#index as HTML
|
474
|
+
Completed 200 OK in 0.2ms (Views: 0.2ms)
|
475
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:13:56 -0500
|
476
|
+
Processing by WidgetsController#new as HTML
|
477
|
+
Completed 500 Internal Server Error in 0.1ms
|
478
|
+
Processing by WidgetsController#new as HTML
|
479
|
+
Completed 500 Internal Server Error in 0.2ms
|
480
|
+
Processing by WidgetsController#index as HTML
|
481
|
+
Completed 200 OK in 15.9ms (Views: 15.8ms)
|
482
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:14:22 -0500
|
483
|
+
Processing by WidgetsController#new as HTML
|
484
|
+
Completed 500 Internal Server Error in 0.2ms
|
485
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:14:22 -0500
|
486
|
+
Processing by WidgetsController#index as HTML
|
487
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
488
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:14:22 -0500
|
489
|
+
Processing by WidgetsController#new as HTML
|
490
|
+
Completed 500 Internal Server Error in 0.1ms
|
491
|
+
Processing by WidgetsController#new as HTML
|
492
|
+
Completed 500 Internal Server Error in 0.2ms
|
493
|
+
Processing by WidgetsController#index as HTML
|
494
|
+
Completed 200 OK in 15.8ms (Views: 15.7ms)
|
495
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:15:21 -0500
|
496
|
+
Processing by WidgetsController#new as HTML
|
497
|
+
Completed 500 Internal Server Error in 0.2ms
|
498
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:15:21 -0500
|
499
|
+
Processing by WidgetsController#index as HTML
|
500
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
501
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:15:21 -0500
|
502
|
+
Processing by WidgetsController#new as HTML
|
503
|
+
Completed 500 Internal Server Error in 0.1ms
|
504
|
+
Processing by WidgetsController#new as HTML
|
505
|
+
Completed 500 Internal Server Error in 0.2ms
|
506
|
+
Processing by WidgetsController#index as HTML
|
507
|
+
Completed 200 OK in 16.3ms (Views: 16.2ms)
|
508
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:15:52 -0500
|
509
|
+
Processing by WidgetsController#new as HTML
|
510
|
+
Completed 500 Internal Server Error in 0.2ms
|
511
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:15:52 -0500
|
512
|
+
Processing by WidgetsController#index as HTML
|
513
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
514
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:15:52 -0500
|
515
|
+
Processing by WidgetsController#new as HTML
|
516
|
+
Completed 500 Internal Server Error in 0.1ms
|
517
|
+
Processing by WidgetsController#new as HTML
|
518
|
+
Completed 500 Internal Server Error in 0.2ms
|
519
|
+
Processing by WidgetsController#index as HTML
|
520
|
+
Completed 200 OK in 17.8ms (Views: 17.6ms)
|
521
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:16:21 -0500
|
522
|
+
Processing by WidgetsController#new as HTML
|
523
|
+
Completed 500 Internal Server Error in 0.2ms
|
524
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:16:21 -0500
|
525
|
+
Processing by WidgetsController#index as HTML
|
526
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
527
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:16:21 -0500
|
528
|
+
Processing by WidgetsController#new as HTML
|
529
|
+
Completed 500 Internal Server Error in 0.2ms
|
530
|
+
Processing by WidgetsController#new as HTML
|
531
|
+
Completed 500 Internal Server Error in 0.2ms
|
532
|
+
Processing by WidgetsController#index as HTML
|
533
|
+
Completed 200 OK in 16.1ms (Views: 16.0ms)
|
534
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:16:38 -0500
|
535
|
+
Processing by WidgetsController#new as HTML
|
536
|
+
Completed 500 Internal Server Error in 0.2ms
|
537
|
+
|
538
|
+
ZeroDivisionError (divided by 0):
|
539
|
+
app.rb:21:in `/'
|
540
|
+
app.rb:21:in `new'
|
541
|
+
actionpack (3.2.16) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
542
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:167:in `process_action'
|
543
|
+
actionpack (3.2.16) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
544
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
545
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:403:in `_run__565296475311303735__process_action__3364227234874532885__callbacks'
|
546
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
547
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
548
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
549
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
550
|
+
actionpack (3.2.16) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
551
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
552
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `block in instrument'
|
553
|
+
activesupport (3.2.16) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
554
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `instrument'
|
555
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
556
|
+
actionpack (3.2.16) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
557
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:121:in `process'
|
558
|
+
actionpack (3.2.16) lib/abstract_controller/rendering.rb:45:in `process'
|
559
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:203:in `dispatch'
|
560
|
+
actionpack (3.2.16) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
561
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:246:in `block in action'
|
562
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
563
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
564
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
565
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
566
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
567
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
568
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
569
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
570
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
571
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
572
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/head.rb:14:in `call'
|
573
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
574
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
575
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
576
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
577
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
578
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
579
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `_run__3767461419069816379__call__7879057257018329__callbacks'
|
580
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
581
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
582
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
583
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
584
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
585
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
586
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
587
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
588
|
+
railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
|
589
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `block in call'
|
590
|
+
activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
|
591
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
|
592
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
593
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
594
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
595
|
+
activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
596
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
597
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
|
598
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:14:in `_call'
|
599
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:9:in `call'
|
600
|
+
railties (3.2.16) lib/rails/engine.rb:484:in `call'
|
601
|
+
railties (3.2.16) lib/rails/application.rb:231:in `call'
|
602
|
+
rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
|
603
|
+
rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
|
604
|
+
rack-test (0.6.2) lib/rack/test.rb:123:in `request'
|
605
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:299:in `process'
|
606
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:33:in `get'
|
607
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
|
608
|
+
/Users/todd/Projects/influxdb/influxdb-rails/spec/integration/exceptions_spec.rb:15:in `block (3 levels) in <top (required)>'
|
609
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `instance_eval'
|
610
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `block in run'
|
611
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
|
612
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
|
613
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `block in run_examples'
|
614
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `map'
|
615
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
|
616
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
|
617
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `block in run'
|
618
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `map'
|
619
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
|
620
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run'
|
621
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `map'
|
622
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block in run'
|
623
|
+
rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
|
624
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
|
625
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
|
626
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `block in autorun'
|
627
|
+
|
628
|
+
|
629
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:16:38 -0500
|
630
|
+
Processing by WidgetsController#index as HTML
|
631
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
632
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:16:38 -0500
|
633
|
+
Processing by WidgetsController#new as HTML
|
634
|
+
Completed 500 Internal Server Error in 0.2ms
|
635
|
+
|
636
|
+
ZeroDivisionError (divided by 0):
|
637
|
+
app.rb:21:in `/'
|
638
|
+
app.rb:21:in `new'
|
639
|
+
actionpack (3.2.16) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
640
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:167:in `process_action'
|
641
|
+
actionpack (3.2.16) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
642
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
643
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:403:in `_run__565296475311303735__process_action__3364227234874532885__callbacks'
|
644
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
645
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
646
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
647
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
648
|
+
actionpack (3.2.16) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
649
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
650
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `block in instrument'
|
651
|
+
activesupport (3.2.16) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
652
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `instrument'
|
653
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
654
|
+
actionpack (3.2.16) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
655
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:121:in `process'
|
656
|
+
actionpack (3.2.16) lib/abstract_controller/rendering.rb:45:in `process'
|
657
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:203:in `dispatch'
|
658
|
+
actionpack (3.2.16) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
659
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:246:in `block in action'
|
660
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
661
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
662
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
663
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
664
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
665
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
666
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
667
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
668
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
669
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
670
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/head.rb:14:in `call'
|
671
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
672
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
673
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
674
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
675
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
676
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
677
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `_run__3767461419069816379__call__7879057257018329__callbacks'
|
678
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
679
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
680
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
681
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
682
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
683
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
684
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
685
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
686
|
+
railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
|
687
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `block in call'
|
688
|
+
activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
|
689
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
|
690
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
691
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
692
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
693
|
+
activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
694
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
695
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
|
696
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:14:in `_call'
|
697
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:9:in `call'
|
698
|
+
railties (3.2.16) lib/rails/engine.rb:484:in `call'
|
699
|
+
railties (3.2.16) lib/rails/application.rb:231:in `call'
|
700
|
+
rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
|
701
|
+
rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
|
702
|
+
rack-test (0.6.2) lib/rack/test.rb:123:in `request'
|
703
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:299:in `process'
|
704
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:33:in `get'
|
705
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
|
706
|
+
/Users/todd/Projects/influxdb/influxdb-rails/spec/integration/exceptions_spec.rb:34:in `block (3 levels) in <top (required)>'
|
707
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `instance_eval'
|
708
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `block in run'
|
709
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
|
710
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
|
711
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `block in run_examples'
|
712
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `map'
|
713
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
|
714
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
|
715
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `block in run'
|
716
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `map'
|
717
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
|
718
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run'
|
719
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `map'
|
720
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block in run'
|
721
|
+
rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
|
722
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
|
723
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
|
724
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `block in autorun'
|
725
|
+
|
726
|
+
|
727
|
+
Processing by WidgetsController#new as HTML
|
728
|
+
Completed 500 Internal Server Error in 0.3ms
|
729
|
+
Processing by WidgetsController#index as HTML
|
730
|
+
Completed 200 OK in 16.6ms (Views: 16.5ms)
|
731
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:16:54 -0500
|
732
|
+
Processing by WidgetsController#new as HTML
|
733
|
+
Completed 500 Internal Server Error in 0.2ms
|
734
|
+
|
735
|
+
ZeroDivisionError (divided by 0):
|
736
|
+
app.rb:21:in `/'
|
737
|
+
app.rb:21:in `new'
|
738
|
+
actionpack (3.2.16) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
739
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:167:in `process_action'
|
740
|
+
actionpack (3.2.16) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
741
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
742
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:403:in `_run__1223476994853058519__process_action__1021871335523655671__callbacks'
|
743
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
744
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
745
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
746
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
747
|
+
actionpack (3.2.16) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
748
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
749
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `block in instrument'
|
750
|
+
activesupport (3.2.16) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
751
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `instrument'
|
752
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
753
|
+
actionpack (3.2.16) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
754
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:121:in `process'
|
755
|
+
actionpack (3.2.16) lib/abstract_controller/rendering.rb:45:in `process'
|
756
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:203:in `dispatch'
|
757
|
+
actionpack (3.2.16) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
758
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:246:in `block in action'
|
759
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
760
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
761
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
762
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
763
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
764
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
765
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
766
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
767
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
768
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
769
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/head.rb:14:in `call'
|
770
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
771
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
772
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
773
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
774
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
775
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
776
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `_run__3840509915701279647__call__3227140681425705211__callbacks'
|
777
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
778
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
779
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
780
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
781
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
782
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
783
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
784
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
785
|
+
railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
|
786
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `block in call'
|
787
|
+
activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
|
788
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
|
789
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
790
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
791
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
792
|
+
activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
793
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
794
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
|
795
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:14:in `_call'
|
796
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:9:in `call'
|
797
|
+
railties (3.2.16) lib/rails/engine.rb:484:in `call'
|
798
|
+
railties (3.2.16) lib/rails/application.rb:231:in `call'
|
799
|
+
rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
|
800
|
+
rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
|
801
|
+
rack-test (0.6.2) lib/rack/test.rb:123:in `request'
|
802
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:299:in `process'
|
803
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:33:in `get'
|
804
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
|
805
|
+
/Users/todd/Projects/influxdb/influxdb-rails/spec/integration/exceptions_spec.rb:14:in `block (3 levels) in <top (required)>'
|
806
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `instance_eval'
|
807
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `block in run'
|
808
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
|
809
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
|
810
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `block in run_examples'
|
811
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `map'
|
812
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
|
813
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
|
814
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `block in run'
|
815
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `map'
|
816
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
|
817
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run'
|
818
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `map'
|
819
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block in run'
|
820
|
+
rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
|
821
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
|
822
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
|
823
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `block in autorun'
|
824
|
+
|
825
|
+
|
826
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:16:54 -0500
|
827
|
+
Processing by WidgetsController#index as HTML
|
828
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
829
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:16:54 -0500
|
830
|
+
Processing by WidgetsController#new as HTML
|
831
|
+
Completed 500 Internal Server Error in 0.2ms
|
832
|
+
|
833
|
+
ZeroDivisionError (divided by 0):
|
834
|
+
app.rb:21:in `/'
|
835
|
+
app.rb:21:in `new'
|
836
|
+
actionpack (3.2.16) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
837
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:167:in `process_action'
|
838
|
+
actionpack (3.2.16) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
839
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
840
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:403:in `_run__1223476994853058519__process_action__1021871335523655671__callbacks'
|
841
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
842
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
843
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
844
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
845
|
+
actionpack (3.2.16) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
846
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
847
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `block in instrument'
|
848
|
+
activesupport (3.2.16) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
849
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `instrument'
|
850
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
851
|
+
actionpack (3.2.16) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
852
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:121:in `process'
|
853
|
+
actionpack (3.2.16) lib/abstract_controller/rendering.rb:45:in `process'
|
854
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:203:in `dispatch'
|
855
|
+
actionpack (3.2.16) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
856
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:246:in `block in action'
|
857
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
858
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
859
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
860
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
861
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
862
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
863
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
864
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
865
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
866
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
867
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/head.rb:14:in `call'
|
868
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
869
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
870
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
871
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
872
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
873
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
874
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `_run__3840509915701279647__call__3227140681425705211__callbacks'
|
875
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
876
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
877
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
878
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
879
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
880
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
881
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
882
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
883
|
+
railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
|
884
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `block in call'
|
885
|
+
activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
|
886
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
|
887
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
888
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
889
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
890
|
+
activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
891
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
892
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
|
893
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:14:in `_call'
|
894
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:9:in `call'
|
895
|
+
railties (3.2.16) lib/rails/engine.rb:484:in `call'
|
896
|
+
railties (3.2.16) lib/rails/application.rb:231:in `call'
|
897
|
+
rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
|
898
|
+
rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
|
899
|
+
rack-test (0.6.2) lib/rack/test.rb:123:in `request'
|
900
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:299:in `process'
|
901
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:33:in `get'
|
902
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
|
903
|
+
/Users/todd/Projects/influxdb/influxdb-rails/spec/integration/exceptions_spec.rb:33:in `block (3 levels) in <top (required)>'
|
904
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `instance_eval'
|
905
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `block in run'
|
906
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
|
907
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
|
908
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `block in run_examples'
|
909
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `map'
|
910
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
|
911
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
|
912
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `block in run'
|
913
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `map'
|
914
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
|
915
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run'
|
916
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `map'
|
917
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block in run'
|
918
|
+
rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
|
919
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
|
920
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
|
921
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `block in autorun'
|
922
|
+
|
923
|
+
|
924
|
+
Processing by WidgetsController#new as HTML
|
925
|
+
Completed 500 Internal Server Error in 0.2ms
|
926
|
+
Processing by WidgetsController#index as HTML
|
927
|
+
Completed 200 OK in 16.0ms (Views: 15.9ms)
|
928
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:17:34 -0500
|
929
|
+
Processing by WidgetsController#new as HTML
|
930
|
+
Completed 500 Internal Server Error in 0.2ms
|
931
|
+
|
932
|
+
ZeroDivisionError (divided by 0):
|
933
|
+
app.rb:21:in `/'
|
934
|
+
app.rb:21:in `new'
|
935
|
+
actionpack (3.2.16) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
936
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:167:in `process_action'
|
937
|
+
actionpack (3.2.16) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
938
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
939
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:403:in `_run__536665226477036787__process_action__3059833484509264482__callbacks'
|
940
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
941
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
942
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
943
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
944
|
+
actionpack (3.2.16) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
945
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
946
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `block in instrument'
|
947
|
+
activesupport (3.2.16) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
948
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `instrument'
|
949
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
950
|
+
actionpack (3.2.16) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
951
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:121:in `process'
|
952
|
+
actionpack (3.2.16) lib/abstract_controller/rendering.rb:45:in `process'
|
953
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:203:in `dispatch'
|
954
|
+
actionpack (3.2.16) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
955
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:246:in `block in action'
|
956
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
957
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
958
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
959
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
960
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
961
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
962
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
963
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
964
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
965
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
966
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/head.rb:14:in `call'
|
967
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
968
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
969
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
970
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
971
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
972
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
973
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `_run__1857259358877163265__call__3864249203764475823__callbacks'
|
974
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
975
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
976
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
977
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
978
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
979
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
980
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
981
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
982
|
+
railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
|
983
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `block in call'
|
984
|
+
activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
|
985
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
|
986
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
987
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
988
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
989
|
+
activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
990
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
991
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
|
992
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:14:in `_call'
|
993
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:9:in `call'
|
994
|
+
railties (3.2.16) lib/rails/engine.rb:484:in `call'
|
995
|
+
railties (3.2.16) lib/rails/application.rb:231:in `call'
|
996
|
+
rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
|
997
|
+
rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
|
998
|
+
rack-test (0.6.2) lib/rack/test.rb:123:in `request'
|
999
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:299:in `process'
|
1000
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:33:in `get'
|
1001
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
|
1002
|
+
/Users/todd/Projects/influxdb/influxdb-rails/spec/integration/exceptions_spec.rb:14:in `block (3 levels) in <top (required)>'
|
1003
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `instance_eval'
|
1004
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `block in run'
|
1005
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
|
1006
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
|
1007
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `block in run_examples'
|
1008
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `map'
|
1009
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
|
1010
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
|
1011
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `block in run'
|
1012
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `map'
|
1013
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
|
1014
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run'
|
1015
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `map'
|
1016
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block in run'
|
1017
|
+
rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
|
1018
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
|
1019
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
|
1020
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `block in autorun'
|
1021
|
+
|
1022
|
+
|
1023
|
+
Started GET "/widgets" for 127.0.0.1 at 2014-02-05 16:17:34 -0500
|
1024
|
+
Processing by WidgetsController#index as HTML
|
1025
|
+
Completed 200 OK in 0.3ms (Views: 0.2ms)
|
1026
|
+
Started GET "/widgets/new" for 127.0.0.1 at 2014-02-05 16:17:34 -0500
|
1027
|
+
Processing by WidgetsController#new as HTML
|
1028
|
+
Completed 500 Internal Server Error in 0.2ms
|
1029
|
+
|
1030
|
+
ZeroDivisionError (divided by 0):
|
1031
|
+
app.rb:21:in `/'
|
1032
|
+
app.rb:21:in `new'
|
1033
|
+
actionpack (3.2.16) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
1034
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:167:in `process_action'
|
1035
|
+
actionpack (3.2.16) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1036
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
1037
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:403:in `_run__536665226477036787__process_action__3059833484509264482__callbacks'
|
1038
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1039
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
1040
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1041
|
+
actionpack (3.2.16) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
1042
|
+
actionpack (3.2.16) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1043
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
1044
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `block in instrument'
|
1045
|
+
activesupport (3.2.16) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1046
|
+
activesupport (3.2.16) lib/active_support/notifications.rb:123:in `instrument'
|
1047
|
+
actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
1048
|
+
actionpack (3.2.16) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
1049
|
+
actionpack (3.2.16) lib/abstract_controller/base.rb:121:in `process'
|
1050
|
+
actionpack (3.2.16) lib/abstract_controller/rendering.rb:45:in `process'
|
1051
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:203:in `dispatch'
|
1052
|
+
actionpack (3.2.16) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
1053
|
+
actionpack (3.2.16) lib/action_controller/metal.rb:246:in `block in action'
|
1054
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
1055
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
1056
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
1057
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
1058
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
1059
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
1060
|
+
actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
1061
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
1062
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
1063
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
1064
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/head.rb:14:in `call'
|
1065
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
1066
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
1067
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
1068
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
1069
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
1070
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
1071
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `_run__1857259358877163265__call__3864249203764475823__callbacks'
|
1072
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1073
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
1074
|
+
activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1075
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1076
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
1077
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1078
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1079
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1080
|
+
railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
|
1081
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `block in call'
|
1082
|
+
activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
|
1083
|
+
railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
|
1084
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1085
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
1086
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
1087
|
+
activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1088
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
1089
|
+
actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
|
1090
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:14:in `_call'
|
1091
|
+
/Users/todd/Projects/influxdb/influxdb-rails/lib/influxdb/rails/rack.rb:9:in `call'
|
1092
|
+
railties (3.2.16) lib/rails/engine.rb:484:in `call'
|
1093
|
+
railties (3.2.16) lib/rails/application.rb:231:in `call'
|
1094
|
+
rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
|
1095
|
+
rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
|
1096
|
+
rack-test (0.6.2) lib/rack/test.rb:123:in `request'
|
1097
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:299:in `process'
|
1098
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:33:in `get'
|
1099
|
+
actionpack (3.2.16) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
|
1100
|
+
/Users/todd/Projects/influxdb/influxdb-rails/spec/integration/exceptions_spec.rb:33:in `block (3 levels) in <top (required)>'
|
1101
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `instance_eval'
|
1102
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:114:in `block in run'
|
1103
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
|
1104
|
+
rspec-core (2.14.7) lib/rspec/core/example.rb:111:in `run'
|
1105
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:390:in `block in run_examples'
|
1106
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `map'
|
1107
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:386:in `run_examples'
|
1108
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:371:in `run'
|
1109
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `block in run'
|
1110
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `map'
|
1111
|
+
rspec-core (2.14.7) lib/rspec/core/example_group.rb:372:in `run'
|
1112
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run'
|
1113
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `map'
|
1114
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:28:in `block in run'
|
1115
|
+
rspec-core (2.14.7) lib/rspec/core/reporter.rb:58:in `report'
|
1116
|
+
rspec-core (2.14.7) lib/rspec/core/command_line.rb:25:in `run'
|
1117
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:80:in `run'
|
1118
|
+
rspec-core (2.14.7) lib/rspec/core/runner.rb:17:in `block in autorun'
|
1119
|
+
|
1120
|
+
|