humane-rails 4.0.0 → 5.0.0
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 +8 -8
- data/README.md +15 -9
- data/Rakefile +4 -2
- data/app/assets/javascripts/humane-rails.js +13 -0
- data/app/assets/stylesheets/humane-rails/bigbox.css +3 -0
- data/app/assets/stylesheets/humane-rails/boldlight.css +3 -0
- data/app/assets/stylesheets/humane-rails/jackedup.css +3 -0
- data/app/assets/stylesheets/humane-rails/libnotify.css +3 -0
- data/app/assets/stylesheets/humane-rails/original.css +3 -0
- data/app/helpers/humane_rails/flash_messages_helper.rb +21 -0
- data/lib/humane-rails.rb +1 -1
- data/lib/humane-rails/engine.rb +15 -2
- data/lib/humane-rails/version.rb +1 -1
- data/spec/internal/app/assets/javascripts/application.js +2 -0
- data/spec/internal/app/assets/stylesheets/application.css +3 -0
- data/spec/internal/app/controllers/application_controller.rb +2 -0
- data/spec/internal/app/controllers/flash_controller.rb +7 -0
- data/spec/internal/app/views/flash/index.html.erb +8 -0
- data/spec/internal/app/views/layouts/application.html.erb +12 -0
- data/spec/internal/config/routes.rb +3 -0
- data/spec/internal/log/test.log +2291 -0
- data/spec/internal/public/favicon.ico +0 -0
- data/spec/requests/navigation_spec.rb +30 -0
- data/spec/spec_helper.rb +16 -0
- metadata +121 -19
- data/.gitignore +0 -4
- data/Gemfile +0 -5
- data/app/assets/javascripts/humane.jquery.js +0 -229
- data/app/assets/javascripts/humane.js +0 -13
- data/app/assets/stylesheets/bigbox.css +0 -123
- data/app/assets/stylesheets/boldlight.css +0 -122
- data/app/assets/stylesheets/jackedup.css +0 -123
- data/app/assets/stylesheets/libnotify.css +0 -115
- data/app/assets/stylesheets/original.css +0 -72
- data/app/helpers/humane_flash_messages_helper.rb +0 -19
- data/humane-rails.gemspec +0 -21
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YzhmZjBhYmJlMmEwYjMwOWEwNzNiNzM5Y2NjMjY4ZTAzZDRhZDE4ZA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YTVlNDA3ODU0YTZkNjkwYTg5ODVmZGQxZjZkZDE5MTJkMDM1MjcyZA==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NTJhMDQxYTk0MjcwOTk5ZDJjYWUxNjdkNjYxYmJjNDZmYjYyOTJlMjgyYjY0
|
10
|
+
Y2I3ZTA2OTc4NmMwMTZmZDU0MzY4ODFjZDg3YjQ5MmQ4ODhhNmY3YTNmYjc5
|
11
|
+
Zjk5YzhlZjhlYmI4ZjY5N2Q1ZTg3MDhkOGI0YmQyZDEyMGQxMTE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MmU1OTk2MTAzNzNjNTM5NTcxMDgwODc1M2I0MzI1Yzk5MzE0ZmI1NDMyYzM5
|
14
|
+
MDc4YWM5ZWVkMDhlMTA4ZTAwNmRlOWVlN2VlZDMwZTg2MDhkNDA2ODhmNTIy
|
15
|
+
ZWRmZmU5NDFiMDJkODY1OGZmYmI4MmE0ZjUwMDE0ZTgyYmJkNWE=
|
data/README.md
CHANGED
@@ -17,35 +17,41 @@ Add the following to your Gemfile:
|
|
17
17
|
gem "humane-rails"
|
18
18
|
```
|
19
19
|
|
20
|
-
|
20
|
+
the following directive to the top of your `application.js`:
|
21
21
|
|
22
22
|
```javascript
|
23
|
-
//= require humane
|
23
|
+
//= require humane-rails
|
24
24
|
```
|
25
25
|
|
26
|
-
and one of the following to your `application.css`:
|
26
|
+
and one of the following directives to the top of your `application.css`:
|
27
27
|
|
28
28
|
```css
|
29
|
-
*= require original
|
29
|
+
*= require humane-rails/original
|
30
30
|
```
|
31
31
|
|
32
32
|
```css
|
33
|
-
*= require libnotify
|
33
|
+
*= require humane-rails/libnotify
|
34
34
|
```
|
35
35
|
|
36
36
|
```css
|
37
|
-
*= require bigbox
|
37
|
+
*= require humane-rails/bigbox
|
38
38
|
```
|
39
39
|
|
40
40
|
```css
|
41
|
-
*= require boldlight
|
41
|
+
*= require humane-rails/boldlight
|
42
42
|
```
|
43
43
|
|
44
44
|
```css
|
45
|
-
*= require jackedup
|
45
|
+
*= require humane-rails/jackedup
|
46
46
|
```
|
47
47
|
|
48
|
-
Don't forget to run `bundle update` after
|
48
|
+
Don't forget to run `bundle update` after updating to the latest version of the gem to ensure that it is used by your Rails application.
|
49
|
+
|
50
|
+
The gem also provides a helper for displaying flash messages:
|
51
|
+
|
52
|
+
```ruby
|
53
|
+
<%=raw humane_flash_messages %>
|
54
|
+
```
|
49
55
|
|
50
56
|
## License
|
51
57
|
|
data/Rakefile
CHANGED
@@ -0,0 +1,13 @@
|
|
1
|
+
//= require humane-js/humane
|
2
|
+
|
3
|
+
humane.notice = humane.spawn({
|
4
|
+
addnCls: 'humane-info humane-bigbox-info humane-boldlight-info humane-jackedup-info humane-libnotify-info humane-original-info'
|
5
|
+
});
|
6
|
+
|
7
|
+
humane.error = humane.spawn({
|
8
|
+
addnCls: 'humane-error humane-bigbox-error humane-boldlight-error humane-jackedup-error humane-libnotify-error humane-original-error'
|
9
|
+
});
|
10
|
+
|
11
|
+
humane.alert = humane.spawn({
|
12
|
+
addnCls: 'humane-error humane-bigbox-error humane-boldlight-error humane-jackedup-error humane-libnotify-error humane-original-error'
|
13
|
+
});
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module HumaneRails
|
2
|
+
module FlashMessagesHelper
|
3
|
+
def humane_flash_messages
|
4
|
+
content = ""
|
5
|
+
|
6
|
+
unless flash[:notice].blank?
|
7
|
+
content << javascript_tag("humane.notice(\"#{escape_javascript(flash[:notice])}\");")
|
8
|
+
end
|
9
|
+
|
10
|
+
unless flash[:error].blank?
|
11
|
+
content << javascript_tag("humane.error(\"#{escape_javascript(flash[:error])}\");")
|
12
|
+
end
|
13
|
+
|
14
|
+
unless flash[:alert].blank?
|
15
|
+
content << javascript_tag("humane.alert(\"#{escape_javascript(flash[:alert])}\");")
|
16
|
+
end
|
17
|
+
|
18
|
+
content
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
data/lib/humane-rails.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
require "humane-rails/engine"
|
1
|
+
require "humane-rails/engine"
|
data/lib/humane-rails/engine.rb
CHANGED
@@ -1,6 +1,19 @@
|
|
1
1
|
module HumaneRails
|
2
|
-
|
3
|
-
|
2
|
+
class Engine < ::Rails::Engine
|
3
|
+
isolate_namespace HumaneRails
|
4
|
+
|
5
|
+
initializer "humane-rails.action_controller" do |app|
|
6
|
+
ActiveSupport.on_load :action_controller do
|
7
|
+
helper HumaneRails::FlashMessagesHelper
|
8
|
+
end
|
9
|
+
end
|
10
|
+
|
11
|
+
config.after_initialize do
|
12
|
+
Rails.application.config.assets.paths << root.join("vendor", "assets", "components")
|
13
|
+
end
|
14
|
+
|
15
|
+
config.generators do |g|
|
16
|
+
g.test_framework :rspec
|
4
17
|
end
|
5
18
|
end
|
6
19
|
end
|
data/lib/humane-rails/version.rb
CHANGED
@@ -0,0 +1,8 @@
|
|
1
|
+
<%=raw humane_flash_messages %>
|
2
|
+
|
3
|
+
<h1>Instructions</h1>
|
4
|
+
<ul>
|
5
|
+
<li>Click <%= link_to "here", { :notice => "This is a notice." } %> to display a notice.</li>
|
6
|
+
<li>Click <%= link_to "here", { :error => "This is an error." } %> to display an error.</li>
|
7
|
+
<li>Click <%= link_to "here", { :alert => "This is an alert." } %> to display an alert.</li>
|
8
|
+
</ul>
|
@@ -0,0 +1,2291 @@
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
4
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
5
|
+
|
6
|
+
|
7
|
+
Started GET "/" for 127.0.0.1 at 2013-11-23 16:47:55 +0000
|
8
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
9
|
+
[1m[35m (1.5ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
10
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
11
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
12
|
+
|
13
|
+
|
14
|
+
Started GET "/" for 127.0.0.1 at 2013-11-23 16:56:52 +0000
|
15
|
+
Processing by FlashController#index as HTML
|
16
|
+
Rendered flash/index.html.erb within layouts/application (1.6ms)
|
17
|
+
Completed 200 OK in 40ms (Views: 40.0ms | ActiveRecord: 0.0ms)
|
18
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
19
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
20
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
21
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
22
|
+
|
23
|
+
|
24
|
+
Started GET "/" for 127.0.0.1 at 2013-11-23 17:00:14 +0000
|
25
|
+
Processing by FlashController#index as HTML
|
26
|
+
Rendered flash/index.html.erb within layouts/application (2.3ms)
|
27
|
+
Completed 200 OK in 44ms (Views: 43.9ms | ActiveRecord: 0.0ms)
|
28
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
29
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
30
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
31
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
32
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
33
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
34
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
35
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
36
|
+
|
37
|
+
|
38
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-11-23 17:01:44 +0000
|
39
|
+
Processing by FlashController#index as HTML
|
40
|
+
Parameters: {"notice"=>"xxx"}
|
41
|
+
Rendered flash/index.html.erb within layouts/application (1.7ms)
|
42
|
+
Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms)
|
43
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
44
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
45
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
46
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
47
|
+
|
48
|
+
|
49
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-11-23 17:02:29 +0000
|
50
|
+
Processing by FlashController#index as HTML
|
51
|
+
Parameters: {"notice"=>"xxx"}
|
52
|
+
Rendered flash/index.html.erb within layouts/application (1.6ms)
|
53
|
+
Completed 200 OK in 44ms (Views: 11.4ms | ActiveRecord: 0.0ms)
|
54
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
55
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
56
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
57
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
58
|
+
|
59
|
+
|
60
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-11-23 17:02:57 +0000
|
61
|
+
Processing by FlashController#index as HTML
|
62
|
+
Parameters: {"notice"=>"xxx"}
|
63
|
+
Rendered flash/index.html.erb within layouts/application (2.6ms)
|
64
|
+
Completed 200 OK in 45ms (Views: 15.6ms | ActiveRecord: 0.0ms)
|
65
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
66
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
67
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
68
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
69
|
+
|
70
|
+
|
71
|
+
Started GET "/" for 127.0.0.1 at 2013-11-23 17:03:44 +0000
|
72
|
+
Processing by FlashController#index as HTML
|
73
|
+
Rendered flash/index.html.erb within layouts/application (1.9ms)
|
74
|
+
Completed 200 OK in 43ms (Views: 11.8ms | ActiveRecord: 0.0ms)
|
75
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
76
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
77
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
78
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
79
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
80
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
81
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
82
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
83
|
+
|
84
|
+
|
85
|
+
Started GET "/" for 127.0.0.1 at 2013-11-23 17:06:23 +0000
|
86
|
+
Processing by FlashController#index as HTML
|
87
|
+
Rendered flash/index.html.erb within layouts/application (2.7ms)
|
88
|
+
Completed 200 OK in 21ms (Views: 18.4ms | ActiveRecord: 0.0ms)
|
89
|
+
|
90
|
+
|
91
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 17:06:23 +0000
|
92
|
+
Served asset /application.css - 404 Not Found (1ms)
|
93
|
+
|
94
|
+
|
95
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 17:06:23 +0000
|
96
|
+
Served asset /application.js - 404 Not Found (1ms)
|
97
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
98
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
99
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
100
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
101
|
+
|
102
|
+
|
103
|
+
Started GET "/" for 127.0.0.1 at 2013-11-23 17:15:37 +0000
|
104
|
+
Processing by FlashController#index as HTML
|
105
|
+
Rendered flash/index.html.erb within layouts/application (37.1ms)
|
106
|
+
Completed 200 OK in 54ms (Views: 51.1ms | ActiveRecord: 0.0ms)
|
107
|
+
|
108
|
+
|
109
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 17:15:37 +0000
|
110
|
+
Compiled application.css (1ms) (pid 69747)
|
111
|
+
Compiled humane-rails/original.css (0ms) (pid 69747)
|
112
|
+
Served asset /application.css - 200 OK (12ms)
|
113
|
+
|
114
|
+
|
115
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 17:15:37 +0000
|
116
|
+
Compiled application.js (1ms) (pid 69747)
|
117
|
+
Compiled humane-rails/humane-rails.js (1ms) (pid 69747)
|
118
|
+
Compiled humane-rails/humane.js (0ms) (pid 69747)
|
119
|
+
Served asset /application.js - 200 OK (16ms)
|
120
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
121
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
122
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
123
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
124
|
+
|
125
|
+
|
126
|
+
Started GET "/?notice=notice" for 127.0.0.1 at 2013-11-23 17:17:31 +0000
|
127
|
+
Processing by FlashController#index as HTML
|
128
|
+
Parameters: {"notice"=>"notice"}
|
129
|
+
Rendered flash/index.html.erb within layouts/application (37.3ms)
|
130
|
+
Completed 200 OK in 54ms (Views: 50.7ms | ActiveRecord: 0.0ms)
|
131
|
+
|
132
|
+
|
133
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 17:17:31 +0000
|
134
|
+
Served asset /application.css - 200 OK (3ms)
|
135
|
+
|
136
|
+
|
137
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 17:17:31 +0000
|
138
|
+
Served asset /application.js - 200 OK (2ms)
|
139
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
140
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
141
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
142
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
143
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
144
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
145
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
146
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
147
|
+
|
148
|
+
|
149
|
+
Started GET "/?notice=this%20is%20a%20notice" for 127.0.0.1 at 2013-11-23 17:19:07 +0000
|
150
|
+
Processing by FlashController#index as HTML
|
151
|
+
Parameters: {"notice"=>"this is a notice"}
|
152
|
+
Rendered flash/index.html.erb within layouts/application (2.6ms)
|
153
|
+
Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.0ms)
|
154
|
+
|
155
|
+
|
156
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 17:19:07 +0000
|
157
|
+
Served asset /application.css - 200 OK (4ms)
|
158
|
+
|
159
|
+
|
160
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 17:19:07 +0000
|
161
|
+
Served asset /application.js - 200 OK (3ms)
|
162
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
163
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
164
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
165
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
166
|
+
|
167
|
+
|
168
|
+
Started GET "/?notice=this%20is%20a%20notice" for 127.0.0.1 at 2013-11-23 17:19:55 +0000
|
169
|
+
Processing by FlashController#index as HTML
|
170
|
+
Parameters: {"notice"=>"this is a notice"}
|
171
|
+
Rendered flash/index.html.erb within layouts/application (2.5ms)
|
172
|
+
Completed 200 OK in 16ms (Views: 13.3ms | ActiveRecord: 0.0ms)
|
173
|
+
|
174
|
+
|
175
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 17:19:55 +0000
|
176
|
+
Served asset /application.js - 200 OK (5ms)
|
177
|
+
|
178
|
+
|
179
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 17:19:55 +0000
|
180
|
+
Served asset /application.css - 200 OK (2ms)
|
181
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
182
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
183
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
184
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
185
|
+
|
186
|
+
|
187
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 17:21:11 +0000
|
188
|
+
Processing by FlashController#index as HTML
|
189
|
+
Parameters: {"notice"=>"This is a notice."}
|
190
|
+
Rendered flash/index.html.erb within layouts/application (37.4ms)
|
191
|
+
Completed 200 OK in 57ms (Views: 53.8ms | ActiveRecord: 0.0ms)
|
192
|
+
|
193
|
+
|
194
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 17:21:11 +0000
|
195
|
+
Served asset /application.css - 200 OK (4ms)
|
196
|
+
|
197
|
+
|
198
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 17:21:11 +0000
|
199
|
+
Served asset /application.js - 200 OK (3ms)
|
200
|
+
|
201
|
+
|
202
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 17:21:13 +0000
|
203
|
+
Processing by FlashController#index as HTML
|
204
|
+
Parameters: {"error"=>"This is an error."}
|
205
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
206
|
+
|
207
|
+
|
208
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 17:21:15 +0000
|
209
|
+
Processing by FlashController#index as HTML
|
210
|
+
Parameters: {"alert"=>"This is an alert."}
|
211
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
212
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
213
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
214
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
215
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
216
|
+
|
217
|
+
|
218
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 17:22:12 +0000
|
219
|
+
Processing by FlashController#index as HTML
|
220
|
+
Parameters: {"notice"=>"This is a notice."}
|
221
|
+
Rendered flash/index.html.erb within layouts/application (36.9ms)
|
222
|
+
Completed 200 OK in 52ms (Views: 49.0ms | ActiveRecord: 0.0ms)
|
223
|
+
|
224
|
+
|
225
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 17:22:12 +0000
|
226
|
+
Served asset /application.css - 200 OK (3ms)
|
227
|
+
|
228
|
+
|
229
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 17:22:12 +0000
|
230
|
+
Served asset /application.js - 200 OK (3ms)
|
231
|
+
|
232
|
+
|
233
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 17:22:12 +0000
|
234
|
+
Processing by FlashController#index as HTML
|
235
|
+
Parameters: {"error"=>"This is an error."}
|
236
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
237
|
+
|
238
|
+
|
239
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 17:22:12 +0000
|
240
|
+
Processing by FlashController#index as HTML
|
241
|
+
Parameters: {"alert"=>"This is an alert."}
|
242
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
243
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
244
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
245
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
246
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
247
|
+
|
248
|
+
|
249
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 17:23:03 +0000
|
250
|
+
Processing by FlashController#index as HTML
|
251
|
+
Parameters: {"notice"=>"This is a notice."}
|
252
|
+
Rendered flash/index.html.erb within layouts/application (3.6ms)
|
253
|
+
Completed 200 OK in 62ms (Views: 59.1ms | ActiveRecord: 0.0ms)
|
254
|
+
|
255
|
+
|
256
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 17:23:03 +0000
|
257
|
+
Served asset /application.css - 200 OK (4ms)
|
258
|
+
|
259
|
+
|
260
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 17:23:04 +0000
|
261
|
+
Served asset /application.js - 200 OK (2ms)
|
262
|
+
|
263
|
+
|
264
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 17:23:06 +0000
|
265
|
+
Processing by FlashController#index as HTML
|
266
|
+
Parameters: {"error"=>"This is an error."}
|
267
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
268
|
+
|
269
|
+
|
270
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 17:23:06 +0000
|
271
|
+
Processing by FlashController#index as HTML
|
272
|
+
Parameters: {"alert"=>"This is an alert."}
|
273
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
274
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
275
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
276
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
277
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
278
|
+
|
279
|
+
|
280
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 17:23:41 +0000
|
281
|
+
Processing by FlashController#index as HTML
|
282
|
+
Parameters: {"notice"=>"This is a notice."}
|
283
|
+
Rendered flash/index.html.erb within layouts/application (2.9ms)
|
284
|
+
Completed 200 OK in 57ms (Views: 54.6ms | ActiveRecord: 0.0ms)
|
285
|
+
|
286
|
+
|
287
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 17:23:41 +0000
|
288
|
+
Served asset /application.css - 200 OK (5ms)
|
289
|
+
|
290
|
+
|
291
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 17:23:41 +0000
|
292
|
+
Served asset /application.js - 200 OK (2ms)
|
293
|
+
|
294
|
+
|
295
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 17:23:41 +0000
|
296
|
+
Processing by FlashController#index as HTML
|
297
|
+
Parameters: {"error"=>"This is an error."}
|
298
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
299
|
+
|
300
|
+
|
301
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 17:23:41 +0000
|
302
|
+
Processing by FlashController#index as HTML
|
303
|
+
Parameters: {"alert"=>"This is an alert."}
|
304
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
305
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
306
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
307
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
308
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
309
|
+
|
310
|
+
|
311
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 17:24:15 +0000
|
312
|
+
Processing by FlashController#index as HTML
|
313
|
+
Parameters: {"notice"=>"This is a notice."}
|
314
|
+
Rendered flash/index.html.erb within layouts/application (38.2ms)
|
315
|
+
Completed 200 OK in 57ms (Views: 53.7ms | ActiveRecord: 0.0ms)
|
316
|
+
|
317
|
+
|
318
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 17:24:15 +0000
|
319
|
+
Served asset /application.css - 200 OK (3ms)
|
320
|
+
|
321
|
+
|
322
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 17:24:15 +0000
|
323
|
+
Served asset /application.js - 200 OK (2ms)
|
324
|
+
|
325
|
+
|
326
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 17:24:15 +0000
|
327
|
+
Processing by FlashController#index as HTML
|
328
|
+
Parameters: {"error"=>"This is an error."}
|
329
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
330
|
+
|
331
|
+
|
332
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 17:24:15 +0000
|
333
|
+
Processing by FlashController#index as HTML
|
334
|
+
Parameters: {"alert"=>"This is an alert."}
|
335
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
336
|
+
|
337
|
+
|
338
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 18:15:11 +0000
|
339
|
+
Processing by FlashController#index as HTML
|
340
|
+
Parameters: {"notice"=>"This is a notice."}
|
341
|
+
Rendered flash/index.html.erb within layouts/application (33.1ms)
|
342
|
+
Completed 200 OK in 53ms (Views: 50.0ms)
|
343
|
+
|
344
|
+
|
345
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 18:15:11 +0000
|
346
|
+
Served asset /application.css - 200 OK (6ms)
|
347
|
+
|
348
|
+
|
349
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 18:15:11 +0000
|
350
|
+
Compiled application.js (1ms) (pid 27472)
|
351
|
+
Compiled humane-rails.js (0ms) (pid 27472)
|
352
|
+
Served asset /application.js - 200 OK (11ms)
|
353
|
+
|
354
|
+
|
355
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 18:15:11 +0000
|
356
|
+
Processing by FlashController#index as HTML
|
357
|
+
Parameters: {"error"=>"This is an error."}
|
358
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
359
|
+
|
360
|
+
|
361
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 18:15:11 +0000
|
362
|
+
Processing by FlashController#index as HTML
|
363
|
+
Parameters: {"alert"=>"This is an alert."}
|
364
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
365
|
+
|
366
|
+
|
367
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 19:42:29 +0000
|
368
|
+
Processing by FlashController#index as HTML
|
369
|
+
Parameters: {"notice"=>"This is a notice."}
|
370
|
+
Rendered flash/index.html.erb within layouts/application (2.6ms)
|
371
|
+
Completed 200 OK in 18ms (Views: 14.6ms)
|
372
|
+
|
373
|
+
|
374
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:42:29 +0000
|
375
|
+
Error compiling asset application.css:
|
376
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/original'
|
377
|
+
(in /Users/harrigan/humane-rails/spec/internal/app/assets/stylesheets/application.css:2)
|
378
|
+
Served asset /application.css - 500 Internal Server Error
|
379
|
+
|
380
|
+
|
381
|
+
|
382
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:42:29 +0000
|
383
|
+
Cache for Asset (application.js) is stale
|
384
|
+
couldn't find file 'humane-rails/humane'
|
385
|
+
Compiled application.js (1ms) (pid 65905)
|
386
|
+
Error compiling asset application.js:
|
387
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/humane'
|
388
|
+
(in /Users/harrigan/humane-rails/app/assets/javascripts/humane-rails.js:1)
|
389
|
+
Served asset /application.js - 500 Internal Server Error
|
390
|
+
|
391
|
+
|
392
|
+
|
393
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 19:42:29 +0000
|
394
|
+
Processing by FlashController#index as HTML
|
395
|
+
Parameters: {"error"=>"This is an error."}
|
396
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
397
|
+
|
398
|
+
|
399
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:42:29 +0000
|
400
|
+
Error compiling asset application.css:
|
401
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/original'
|
402
|
+
(in /Users/harrigan/humane-rails/spec/internal/app/assets/stylesheets/application.css:2)
|
403
|
+
Served asset /application.css - 500 Internal Server Error
|
404
|
+
|
405
|
+
|
406
|
+
|
407
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:42:29 +0000
|
408
|
+
Cache for Asset (application.js) is stale
|
409
|
+
couldn't find file 'humane-rails/humane'
|
410
|
+
Compiled application.js (1ms) (pid 65905)
|
411
|
+
Error compiling asset application.js:
|
412
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/humane'
|
413
|
+
(in /Users/harrigan/humane-rails/app/assets/javascripts/humane-rails.js:1)
|
414
|
+
Served asset /application.js - 500 Internal Server Error
|
415
|
+
|
416
|
+
|
417
|
+
|
418
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 19:42:29 +0000
|
419
|
+
Processing by FlashController#index as HTML
|
420
|
+
Parameters: {"alert"=>"This is an alert."}
|
421
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
422
|
+
|
423
|
+
|
424
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:42:29 +0000
|
425
|
+
Error compiling asset application.css:
|
426
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/original'
|
427
|
+
(in /Users/harrigan/humane-rails/spec/internal/app/assets/stylesheets/application.css:2)
|
428
|
+
Served asset /application.css - 500 Internal Server Error
|
429
|
+
|
430
|
+
|
431
|
+
|
432
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:42:29 +0000
|
433
|
+
Cache for Asset (application.js) is stale
|
434
|
+
couldn't find file 'humane-rails/humane'
|
435
|
+
Compiled application.js (1ms) (pid 65905)
|
436
|
+
Error compiling asset application.js:
|
437
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/humane'
|
438
|
+
(in /Users/harrigan/humane-rails/app/assets/javascripts/humane-rails.js:1)
|
439
|
+
Served asset /application.js - 500 Internal Server Error
|
440
|
+
|
441
|
+
|
442
|
+
|
443
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 19:43:30 +0000
|
444
|
+
Processing by FlashController#index as HTML
|
445
|
+
Parameters: {"notice"=>"This is a notice."}
|
446
|
+
Rendered flash/index.html.erb within layouts/application (3.7ms)
|
447
|
+
Completed 200 OK in 19ms (Views: 16.1ms)
|
448
|
+
|
449
|
+
|
450
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:43:30 +0000
|
451
|
+
Error compiling asset application.css:
|
452
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/original'
|
453
|
+
(in /Users/harrigan/humane-rails/spec/internal/app/assets/stylesheets/application.css:2)
|
454
|
+
Served asset /application.css - 500 Internal Server Error
|
455
|
+
|
456
|
+
|
457
|
+
|
458
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:43:30 +0000
|
459
|
+
Cache for Asset (application.js) is stale
|
460
|
+
couldn't find file 'components/humane-js/humane'
|
461
|
+
Compiled application.js (1ms) (pid 66323)
|
462
|
+
Error compiling asset application.js:
|
463
|
+
Sprockets::FileNotFound: couldn't find file 'components/humane-js/humane'
|
464
|
+
(in /Users/harrigan/humane-rails/app/assets/javascripts/humane-rails.js:1)
|
465
|
+
Served asset /application.js - 500 Internal Server Error
|
466
|
+
|
467
|
+
|
468
|
+
|
469
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 19:43:30 +0000
|
470
|
+
Processing by FlashController#index as HTML
|
471
|
+
Parameters: {"error"=>"This is an error."}
|
472
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
473
|
+
|
474
|
+
|
475
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:43:30 +0000
|
476
|
+
Error compiling asset application.css:
|
477
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/original'
|
478
|
+
(in /Users/harrigan/humane-rails/spec/internal/app/assets/stylesheets/application.css:2)
|
479
|
+
Served asset /application.css - 500 Internal Server Error
|
480
|
+
|
481
|
+
|
482
|
+
|
483
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:43:30 +0000
|
484
|
+
Cache for Asset (application.js) is stale
|
485
|
+
couldn't find file 'components/humane-js/humane'
|
486
|
+
Compiled application.js (0ms) (pid 66323)
|
487
|
+
Error compiling asset application.js:
|
488
|
+
Sprockets::FileNotFound: couldn't find file 'components/humane-js/humane'
|
489
|
+
(in /Users/harrigan/humane-rails/app/assets/javascripts/humane-rails.js:1)
|
490
|
+
Served asset /application.js - 500 Internal Server Error
|
491
|
+
|
492
|
+
|
493
|
+
|
494
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 19:43:30 +0000
|
495
|
+
Processing by FlashController#index as HTML
|
496
|
+
Parameters: {"alert"=>"This is an alert."}
|
497
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
498
|
+
|
499
|
+
|
500
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:43:30 +0000
|
501
|
+
Error compiling asset application.css:
|
502
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/original'
|
503
|
+
(in /Users/harrigan/humane-rails/spec/internal/app/assets/stylesheets/application.css:2)
|
504
|
+
Served asset /application.css - 500 Internal Server Error
|
505
|
+
|
506
|
+
|
507
|
+
|
508
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:43:30 +0000
|
509
|
+
Cache for Asset (application.js) is stale
|
510
|
+
couldn't find file 'components/humane-js/humane'
|
511
|
+
Compiled application.js (1ms) (pid 66323)
|
512
|
+
Error compiling asset application.js:
|
513
|
+
Sprockets::FileNotFound: couldn't find file 'components/humane-js/humane'
|
514
|
+
(in /Users/harrigan/humane-rails/app/assets/javascripts/humane-rails.js:1)
|
515
|
+
Served asset /application.js - 500 Internal Server Error
|
516
|
+
|
517
|
+
|
518
|
+
|
519
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 19:44:01 +0000
|
520
|
+
Processing by FlashController#index as HTML
|
521
|
+
Parameters: {"notice"=>"This is a notice."}
|
522
|
+
Rendered flash/index.html.erb within layouts/application (3.6ms)
|
523
|
+
Completed 200 OK in 19ms (Views: 16.6ms)
|
524
|
+
|
525
|
+
|
526
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:44:01 +0000
|
527
|
+
Error compiling asset application.css:
|
528
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/original'
|
529
|
+
(in /Users/harrigan/humane-rails/spec/internal/app/assets/stylesheets/application.css:2)
|
530
|
+
Served asset /application.css - 500 Internal Server Error
|
531
|
+
|
532
|
+
|
533
|
+
|
534
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:44:01 +0000
|
535
|
+
Cache for Asset (application.js) is stale
|
536
|
+
couldn't find file 'vendor/components/humane-js/humane'
|
537
|
+
Compiled application.js (0ms) (pid 66545)
|
538
|
+
Error compiling asset application.js:
|
539
|
+
Sprockets::FileNotFound: couldn't find file 'vendor/components/humane-js/humane'
|
540
|
+
(in /Users/harrigan/humane-rails/app/assets/javascripts/humane-rails.js:1)
|
541
|
+
Served asset /application.js - 500 Internal Server Error
|
542
|
+
|
543
|
+
|
544
|
+
|
545
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 19:44:01 +0000
|
546
|
+
Processing by FlashController#index as HTML
|
547
|
+
Parameters: {"error"=>"This is an error."}
|
548
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
549
|
+
|
550
|
+
|
551
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:44:01 +0000
|
552
|
+
Error compiling asset application.css:
|
553
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/original'
|
554
|
+
(in /Users/harrigan/humane-rails/spec/internal/app/assets/stylesheets/application.css:2)
|
555
|
+
Served asset /application.css - 500 Internal Server Error
|
556
|
+
|
557
|
+
|
558
|
+
|
559
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:44:01 +0000
|
560
|
+
Cache for Asset (application.js) is stale
|
561
|
+
couldn't find file 'vendor/components/humane-js/humane'
|
562
|
+
Compiled application.js (1ms) (pid 66545)
|
563
|
+
Error compiling asset application.js:
|
564
|
+
Sprockets::FileNotFound: couldn't find file 'vendor/components/humane-js/humane'
|
565
|
+
(in /Users/harrigan/humane-rails/app/assets/javascripts/humane-rails.js:1)
|
566
|
+
Served asset /application.js - 500 Internal Server Error
|
567
|
+
|
568
|
+
|
569
|
+
|
570
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 19:44:01 +0000
|
571
|
+
Processing by FlashController#index as HTML
|
572
|
+
Parameters: {"alert"=>"This is an alert."}
|
573
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
574
|
+
|
575
|
+
|
576
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:44:01 +0000
|
577
|
+
Error compiling asset application.css:
|
578
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/original'
|
579
|
+
(in /Users/harrigan/humane-rails/spec/internal/app/assets/stylesheets/application.css:2)
|
580
|
+
Served asset /application.css - 500 Internal Server Error
|
581
|
+
|
582
|
+
|
583
|
+
|
584
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:44:01 +0000
|
585
|
+
Cache for Asset (application.js) is stale
|
586
|
+
couldn't find file 'vendor/components/humane-js/humane'
|
587
|
+
Compiled application.js (0ms) (pid 66545)
|
588
|
+
Error compiling asset application.js:
|
589
|
+
Sprockets::FileNotFound: couldn't find file 'vendor/components/humane-js/humane'
|
590
|
+
(in /Users/harrigan/humane-rails/app/assets/javascripts/humane-rails.js:1)
|
591
|
+
Served asset /application.js - 500 Internal Server Error
|
592
|
+
|
593
|
+
|
594
|
+
|
595
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 19:44:19 +0000
|
596
|
+
Processing by FlashController#index as HTML
|
597
|
+
Parameters: {"notice"=>"This is a notice."}
|
598
|
+
Rendered flash/index.html.erb within layouts/application (2.6ms)
|
599
|
+
Completed 200 OK in 18ms (Views: 15.6ms)
|
600
|
+
|
601
|
+
|
602
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:44:19 +0000
|
603
|
+
Error compiling asset application.css:
|
604
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/original'
|
605
|
+
(in /Users/harrigan/humane-rails/spec/internal/app/assets/stylesheets/application.css:2)
|
606
|
+
Served asset /application.css - 500 Internal Server Error
|
607
|
+
|
608
|
+
|
609
|
+
|
610
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:44:19 +0000
|
611
|
+
Cache for Asset (application.js) is stale
|
612
|
+
couldn't find file 'vendor/assets/components/humane-js/humane'
|
613
|
+
Compiled application.js (0ms) (pid 66770)
|
614
|
+
Error compiling asset application.js:
|
615
|
+
Sprockets::FileNotFound: couldn't find file 'vendor/assets/components/humane-js/humane'
|
616
|
+
(in /Users/harrigan/humane-rails/app/assets/javascripts/humane-rails.js:1)
|
617
|
+
Served asset /application.js - 500 Internal Server Error
|
618
|
+
|
619
|
+
|
620
|
+
|
621
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 19:44:19 +0000
|
622
|
+
Processing by FlashController#index as HTML
|
623
|
+
Parameters: {"error"=>"This is an error."}
|
624
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
625
|
+
|
626
|
+
|
627
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:44:19 +0000
|
628
|
+
Error compiling asset application.css:
|
629
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/original'
|
630
|
+
(in /Users/harrigan/humane-rails/spec/internal/app/assets/stylesheets/application.css:2)
|
631
|
+
Served asset /application.css - 500 Internal Server Error
|
632
|
+
|
633
|
+
|
634
|
+
|
635
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:44:19 +0000
|
636
|
+
Cache for Asset (application.js) is stale
|
637
|
+
couldn't find file 'vendor/assets/components/humane-js/humane'
|
638
|
+
Compiled application.js (0ms) (pid 66770)
|
639
|
+
Error compiling asset application.js:
|
640
|
+
Sprockets::FileNotFound: couldn't find file 'vendor/assets/components/humane-js/humane'
|
641
|
+
(in /Users/harrigan/humane-rails/app/assets/javascripts/humane-rails.js:1)
|
642
|
+
Served asset /application.js - 500 Internal Server Error
|
643
|
+
|
644
|
+
|
645
|
+
|
646
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 19:44:19 +0000
|
647
|
+
Processing by FlashController#index as HTML
|
648
|
+
Parameters: {"alert"=>"This is an alert."}
|
649
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
650
|
+
|
651
|
+
|
652
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:44:19 +0000
|
653
|
+
Error compiling asset application.css:
|
654
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/original'
|
655
|
+
(in /Users/harrigan/humane-rails/spec/internal/app/assets/stylesheets/application.css:2)
|
656
|
+
Served asset /application.css - 500 Internal Server Error
|
657
|
+
|
658
|
+
|
659
|
+
|
660
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:44:19 +0000
|
661
|
+
Cache for Asset (application.js) is stale
|
662
|
+
couldn't find file 'vendor/assets/components/humane-js/humane'
|
663
|
+
Compiled application.js (1ms) (pid 66770)
|
664
|
+
Error compiling asset application.js:
|
665
|
+
Sprockets::FileNotFound: couldn't find file 'vendor/assets/components/humane-js/humane'
|
666
|
+
(in /Users/harrigan/humane-rails/app/assets/javascripts/humane-rails.js:1)
|
667
|
+
Served asset /application.js - 500 Internal Server Error
|
668
|
+
|
669
|
+
|
670
|
+
|
671
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 19:47:23 +0000
|
672
|
+
Processing by FlashController#index as HTML
|
673
|
+
Parameters: {"notice"=>"This is a notice."}
|
674
|
+
Rendered flash/index.html.erb within layouts/application (2.2ms)
|
675
|
+
Completed 200 OK in 19ms (Views: 16.6ms)
|
676
|
+
|
677
|
+
|
678
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:47:23 +0000
|
679
|
+
Error compiling asset application.css:
|
680
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/original'
|
681
|
+
(in /Users/harrigan/humane-rails/spec/internal/app/assets/stylesheets/application.css:2)
|
682
|
+
Served asset /application.css - 500 Internal Server Error
|
683
|
+
|
684
|
+
|
685
|
+
|
686
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:47:23 +0000
|
687
|
+
Compiled humane-rails.js (1ms) (pid 68740)
|
688
|
+
Compiled humane-js/humane.js (0ms) (pid 68740)
|
689
|
+
Compiled application.js (1ms) (pid 68740)
|
690
|
+
Served asset /application.js - 200 OK (16ms)
|
691
|
+
|
692
|
+
|
693
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 19:47:26 +0000
|
694
|
+
Processing by FlashController#index as HTML
|
695
|
+
Parameters: {"error"=>"This is an error."}
|
696
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
697
|
+
|
698
|
+
|
699
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:47:26 +0000
|
700
|
+
Error compiling asset application.css:
|
701
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/original'
|
702
|
+
(in /Users/harrigan/humane-rails/spec/internal/app/assets/stylesheets/application.css:2)
|
703
|
+
Served asset /application.css - 500 Internal Server Error
|
704
|
+
|
705
|
+
|
706
|
+
|
707
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 19:47:28 +0000
|
708
|
+
Processing by FlashController#index as HTML
|
709
|
+
Parameters: {"alert"=>"This is an alert."}
|
710
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
711
|
+
|
712
|
+
|
713
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:47:28 +0000
|
714
|
+
Error compiling asset application.css:
|
715
|
+
Sprockets::FileNotFound: couldn't find file 'humane-rails/original'
|
716
|
+
(in /Users/harrigan/humane-rails/spec/internal/app/assets/stylesheets/application.css:2)
|
717
|
+
Served asset /application.css - 500 Internal Server Error
|
718
|
+
|
719
|
+
|
720
|
+
|
721
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 19:49:23 +0000
|
722
|
+
Processing by FlashController#index as HTML
|
723
|
+
Parameters: {"notice"=>"This is a notice."}
|
724
|
+
Rendered flash/index.html.erb within layouts/application (3.0ms)
|
725
|
+
Completed 200 OK in 19ms (Views: 16.4ms)
|
726
|
+
|
727
|
+
|
728
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:49:23 +0000
|
729
|
+
Cache for Asset (application.css) is stale
|
730
|
+
couldn't find file 'humane-js/themes/original/bigbox'
|
731
|
+
Compiled application.css (0ms) (pid 70106)
|
732
|
+
Error compiling asset application.css:
|
733
|
+
Sprockets::FileNotFound: couldn't find file 'humane-js/themes/original/bigbox'
|
734
|
+
(in /Users/harrigan/humane-rails/app/assets/stylesheets/humane-rails/original.css:2)
|
735
|
+
Served asset /application.css - 500 Internal Server Error
|
736
|
+
|
737
|
+
|
738
|
+
|
739
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:49:23 +0000
|
740
|
+
Served asset /application.js - 200 OK (3ms)
|
741
|
+
|
742
|
+
|
743
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 19:49:25 +0000
|
744
|
+
Processing by FlashController#index as HTML
|
745
|
+
Parameters: {"error"=>"This is an error."}
|
746
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
747
|
+
|
748
|
+
|
749
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:49:25 +0000
|
750
|
+
Cache for Asset (application.css) is stale
|
751
|
+
couldn't find file 'humane-js/themes/original/bigbox'
|
752
|
+
Compiled application.css (0ms) (pid 70106)
|
753
|
+
Error compiling asset application.css:
|
754
|
+
Sprockets::FileNotFound: couldn't find file 'humane-js/themes/original/bigbox'
|
755
|
+
(in /Users/harrigan/humane-rails/app/assets/stylesheets/humane-rails/original.css:2)
|
756
|
+
Served asset /application.css - 500 Internal Server Error
|
757
|
+
|
758
|
+
|
759
|
+
|
760
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 19:49:27 +0000
|
761
|
+
Processing by FlashController#index as HTML
|
762
|
+
Parameters: {"alert"=>"This is an alert."}
|
763
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
764
|
+
|
765
|
+
|
766
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:49:27 +0000
|
767
|
+
Cache for Asset (application.css) is stale
|
768
|
+
couldn't find file 'humane-js/themes/original/bigbox'
|
769
|
+
Compiled application.css (0ms) (pid 70106)
|
770
|
+
Error compiling asset application.css:
|
771
|
+
Sprockets::FileNotFound: couldn't find file 'humane-js/themes/original/bigbox'
|
772
|
+
(in /Users/harrigan/humane-rails/app/assets/stylesheets/humane-rails/original.css:2)
|
773
|
+
Served asset /application.css - 500 Internal Server Error
|
774
|
+
|
775
|
+
|
776
|
+
|
777
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 19:50:10 +0000
|
778
|
+
Processing by FlashController#index as HTML
|
779
|
+
Parameters: {"notice"=>"This is a notice."}
|
780
|
+
Rendered flash/index.html.erb within layouts/application (2.1ms)
|
781
|
+
Completed 200 OK in 54ms (Views: 51.1ms)
|
782
|
+
|
783
|
+
|
784
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:50:10 +0000
|
785
|
+
Compiled humane-rails/original.css (2ms) (pid 70542)
|
786
|
+
Compiled humane-js/themes/original.css (0ms) (pid 70542)
|
787
|
+
Compiled application.css (1ms) (pid 70542)
|
788
|
+
Served asset /application.css - 200 OK (16ms)
|
789
|
+
|
790
|
+
|
791
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:50:10 +0000
|
792
|
+
Served asset /application.js - 200 OK (2ms)
|
793
|
+
|
794
|
+
|
795
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 19:50:10 +0000
|
796
|
+
Processing by FlashController#index as HTML
|
797
|
+
Parameters: {"error"=>"This is an error."}
|
798
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
799
|
+
|
800
|
+
|
801
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 19:50:10 +0000
|
802
|
+
Processing by FlashController#index as HTML
|
803
|
+
Parameters: {"alert"=>"This is an alert."}
|
804
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
805
|
+
|
806
|
+
|
807
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 19:54:49 +0000
|
808
|
+
Processing by FlashController#index as HTML
|
809
|
+
Parameters: {"notice"=>"This is a notice."}
|
810
|
+
Rendered flash/index.html.erb within layouts/application (3.4ms)
|
811
|
+
Completed 200 OK in 53ms (Views: 50.1ms)
|
812
|
+
|
813
|
+
|
814
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 19:54:49 +0000
|
815
|
+
Served asset /application.css - 200 OK (6ms)
|
816
|
+
|
817
|
+
|
818
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 19:54:49 +0000
|
819
|
+
Served asset /application.js - 200 OK (2ms)
|
820
|
+
|
821
|
+
|
822
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 19:54:49 +0000
|
823
|
+
Processing by FlashController#index as HTML
|
824
|
+
Parameters: {"error"=>"This is an error."}
|
825
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
826
|
+
|
827
|
+
|
828
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 19:54:49 +0000
|
829
|
+
Processing by FlashController#index as HTML
|
830
|
+
Parameters: {"alert"=>"This is an alert."}
|
831
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
832
|
+
|
833
|
+
|
834
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 20:13:54 +0000
|
835
|
+
Processing by FlashController#index as HTML
|
836
|
+
Parameters: {"notice"=>"This is a notice."}
|
837
|
+
Rendered flash/index.html.erb within layouts/application (3.1ms)
|
838
|
+
Completed 200 OK in 55ms (Views: 51.9ms)
|
839
|
+
|
840
|
+
|
841
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 20:13:54 +0000
|
842
|
+
Served asset /application.css - 200 OK (5ms)
|
843
|
+
|
844
|
+
|
845
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 20:13:54 +0000
|
846
|
+
Served asset /application.js - 200 OK (3ms)
|
847
|
+
|
848
|
+
|
849
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 20:13:54 +0000
|
850
|
+
Processing by FlashController#index as HTML
|
851
|
+
Parameters: {"error"=>"This is an error."}
|
852
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
853
|
+
|
854
|
+
|
855
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 20:13:54 +0000
|
856
|
+
Processing by FlashController#index as HTML
|
857
|
+
Parameters: {"alert"=>"This is an alert."}
|
858
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
859
|
+
|
860
|
+
|
861
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-11-23 20:35:49 +0000
|
862
|
+
Processing by FlashController#index as HTML
|
863
|
+
Parameters: {"notice"=>"This is a notice."}
|
864
|
+
Rendered flash/index.html.erb within layouts/application (2.7ms)
|
865
|
+
Completed 200 OK in 47ms (Views: 44.6ms)
|
866
|
+
|
867
|
+
|
868
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-11-23 20:35:49 +0000
|
869
|
+
Served asset /application.css - 200 OK (4ms)
|
870
|
+
|
871
|
+
|
872
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-23 20:35:49 +0000
|
873
|
+
Served asset /application.js - 200 OK (4ms)
|
874
|
+
|
875
|
+
|
876
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-11-23 20:35:49 +0000
|
877
|
+
Processing by FlashController#index as HTML
|
878
|
+
Parameters: {"error"=>"This is an error."}
|
879
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
880
|
+
|
881
|
+
|
882
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-11-23 20:35:49 +0000
|
883
|
+
Processing by FlashController#index as HTML
|
884
|
+
Parameters: {"alert"=>"This is an alert."}
|
885
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
886
|
+
|
887
|
+
|
888
|
+
Started GET "/?notice=This%20is%20a%20notice." for 127.0.0.1 at 2013-12-14 18:55:13 +0000
|
889
|
+
Processing by FlashController#index as HTML
|
890
|
+
Parameters: {"notice"=>"This is a notice."}
|
891
|
+
Rendered flash/index.html.erb within layouts/application (4.9ms)
|
892
|
+
Completed 200 OK in 32ms (Views: 27.2ms)
|
893
|
+
|
894
|
+
|
895
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 18:55:13 +0000
|
896
|
+
Served asset /application.css - 200 OK (51ms)
|
897
|
+
|
898
|
+
|
899
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 18:55:13 +0000
|
900
|
+
Compiled application.js (2ms) (pid 97095)
|
901
|
+
Served asset /application.js - 200 OK (14ms)
|
902
|
+
|
903
|
+
|
904
|
+
Started GET "/?error=This%20is%20an%20error." for 127.0.0.1 at 2013-12-14 18:55:13 +0000
|
905
|
+
Processing by FlashController#index as HTML
|
906
|
+
Parameters: {"error"=>"This is an error."}
|
907
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
908
|
+
|
909
|
+
|
910
|
+
Started GET "/?alert=This%20is%20an%20alert." for 127.0.0.1 at 2013-12-14 18:55:13 +0000
|
911
|
+
Processing by FlashController#index as HTML
|
912
|
+
Parameters: {"alert"=>"This is an alert."}
|
913
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
914
|
+
|
915
|
+
|
916
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 18:56:41 +0000
|
917
|
+
|
918
|
+
ActionView::Template::Error (can't convert nil into String):
|
919
|
+
1: <!DOCTYPE html>
|
920
|
+
2: <html>
|
921
|
+
3: <head>
|
922
|
+
4: <%= stylesheet_link_tag "application" %>
|
923
|
+
5: <%= javascript_include_tag "application" %>
|
924
|
+
6: </head>
|
925
|
+
7: <body>
|
926
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb__2152794458890216137_70152546230120'
|
927
|
+
|
928
|
+
|
929
|
+
|
930
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 18:59:10 +0000
|
931
|
+
|
932
|
+
ActionView::Template::Error (can't convert nil into String):
|
933
|
+
1: <!DOCTYPE html>
|
934
|
+
2: <html>
|
935
|
+
3: <head>
|
936
|
+
4: <%= stylesheet_link_tag "application" %>
|
937
|
+
5: <%= javascript_include_tag "application" %>
|
938
|
+
6: </head>
|
939
|
+
7: <body>
|
940
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
941
|
+
|
942
|
+
|
943
|
+
|
944
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 18:59:36 +0000
|
945
|
+
|
946
|
+
ActionView::Template::Error (can't convert nil into String):
|
947
|
+
1: <!DOCTYPE html>
|
948
|
+
2: <html>
|
949
|
+
3: <head>
|
950
|
+
4:
|
951
|
+
5: <%= javascript_include_tag "application" %>
|
952
|
+
6: </head>
|
953
|
+
7: <body>
|
954
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
955
|
+
|
956
|
+
|
957
|
+
|
958
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 18:59:41 +0000
|
959
|
+
|
960
|
+
ActionView::Template::Error (can't convert nil into String):
|
961
|
+
1: <!DOCTYPE html>
|
962
|
+
2: <html>
|
963
|
+
3: <head>
|
964
|
+
4:
|
965
|
+
5: </head>
|
966
|
+
6: <body>
|
967
|
+
7:
|
968
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
969
|
+
|
970
|
+
|
971
|
+
|
972
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 18:59:44 +0000
|
973
|
+
|
974
|
+
ActionView::Template::Error (can't convert nil into String):
|
975
|
+
1: <!DOCTYPE html>
|
976
|
+
2: <html>
|
977
|
+
3: <head>
|
978
|
+
4: <%= stylesheet_link_tag "application" %>
|
979
|
+
5: <%= javascript_include_tag "application" %>
|
980
|
+
6: </head>
|
981
|
+
7: <body>
|
982
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
983
|
+
|
984
|
+
|
985
|
+
|
986
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 18:59:53 +0000
|
987
|
+
|
988
|
+
ActionView::Template::Error (can't convert nil into String):
|
989
|
+
1: <!DOCTYPE html>
|
990
|
+
2: <html>
|
991
|
+
3: <head>
|
992
|
+
4: <%= stylesheet_link_tag "application" %>
|
993
|
+
5: <%= javascript_include_tag "application" %>
|
994
|
+
6: </head>
|
995
|
+
7: <body>
|
996
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
997
|
+
|
998
|
+
|
999
|
+
|
1000
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 18:59:55 +0000
|
1001
|
+
|
1002
|
+
ActionView::Template::Error (can't convert nil into String):
|
1003
|
+
1: <!DOCTYPE html>
|
1004
|
+
2: <html>
|
1005
|
+
3: <head>
|
1006
|
+
4: <%= stylesheet_link_tag "application" %>
|
1007
|
+
5: <%= javascript_include_tag "application" %>
|
1008
|
+
6: </head>
|
1009
|
+
7: <body>
|
1010
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
1011
|
+
|
1012
|
+
|
1013
|
+
|
1014
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 18:59:57 +0000
|
1015
|
+
|
1016
|
+
ActionView::Template::Error (can't convert nil into String):
|
1017
|
+
1: <!DOCTYPE html>
|
1018
|
+
2: <html>
|
1019
|
+
3: <head>
|
1020
|
+
4: <%= stylesheet_link_tag "application" %>
|
1021
|
+
5: <%= javascript_include_tag "application" %>
|
1022
|
+
6: </head>
|
1023
|
+
7: <body>
|
1024
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
1025
|
+
|
1026
|
+
|
1027
|
+
|
1028
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:00:11 +0000
|
1029
|
+
|
1030
|
+
ActionView::Template::Error (can't convert nil into String):
|
1031
|
+
1: <!DOCTYPE html>
|
1032
|
+
2: <html>
|
1033
|
+
3: <head>
|
1034
|
+
4: <%= stylesheet_link_tag "application" %>
|
1035
|
+
5: <%= javascript_include_tag "application" %>
|
1036
|
+
6: </head>
|
1037
|
+
7: <body>
|
1038
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
1039
|
+
|
1040
|
+
|
1041
|
+
|
1042
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:00:14 +0000
|
1043
|
+
|
1044
|
+
ActionView::Template::Error (can't convert nil into String):
|
1045
|
+
1: <!DOCTYPE html>
|
1046
|
+
2: <html>
|
1047
|
+
3: <head>
|
1048
|
+
4: <%= stylesheet_link_tag "application" %>
|
1049
|
+
5: <%= javascript_include_tag "application" %>
|
1050
|
+
6: </head>
|
1051
|
+
7: <body>
|
1052
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
1053
|
+
|
1054
|
+
|
1055
|
+
|
1056
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:00:38 +0000
|
1057
|
+
|
1058
|
+
ActionView::Template::Error (can't convert nil into String):
|
1059
|
+
1: <!DOCTYPE html>
|
1060
|
+
2: <html>
|
1061
|
+
3: <head>
|
1062
|
+
4:
|
1063
|
+
5: <%= javascript_include_tag "application" %>
|
1064
|
+
6: </head>
|
1065
|
+
7: <body>
|
1066
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
1067
|
+
|
1068
|
+
|
1069
|
+
|
1070
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:00:40 +0000
|
1071
|
+
|
1072
|
+
ActionView::Template::Error (can't convert nil into String):
|
1073
|
+
1: <!DOCTYPE html>
|
1074
|
+
2: <html>
|
1075
|
+
3: <head>
|
1076
|
+
4:
|
1077
|
+
5: <%= javascript_include_tag "application" %>
|
1078
|
+
6: </head>
|
1079
|
+
7: <body>
|
1080
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
1081
|
+
|
1082
|
+
|
1083
|
+
|
1084
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:00:52 +0000
|
1085
|
+
|
1086
|
+
ActionView::Template::Error (can't convert nil into String):
|
1087
|
+
1: <!DOCTYPE html>
|
1088
|
+
2: <html>
|
1089
|
+
3:
|
1090
|
+
4: </html>
|
1091
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
1092
|
+
|
1093
|
+
|
1094
|
+
|
1095
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:00:53 +0000
|
1096
|
+
|
1097
|
+
ActionView::Template::Error (can't convert nil into String):
|
1098
|
+
1: <!DOCTYPE html>
|
1099
|
+
2: <html>
|
1100
|
+
3:
|
1101
|
+
4: </html>
|
1102
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
1103
|
+
|
1104
|
+
|
1105
|
+
|
1106
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:01:00 +0000
|
1107
|
+
|
1108
|
+
ActionView::Template::Error (can't convert nil into String):
|
1109
|
+
1: <!DOCTYPE html>
|
1110
|
+
2: <html>
|
1111
|
+
3: <head>
|
1112
|
+
4: <%= stylesheet_link_tag "application" %>
|
1113
|
+
5: <%= javascript_include_tag "application" %>
|
1114
|
+
6: </head>
|
1115
|
+
7: <body>
|
1116
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
1117
|
+
|
1118
|
+
|
1119
|
+
|
1120
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:01:01 +0000
|
1121
|
+
|
1122
|
+
ActionView::Template::Error (can't convert nil into String):
|
1123
|
+
1: <!DOCTYPE html>
|
1124
|
+
2: <html>
|
1125
|
+
3: <head>
|
1126
|
+
4: <%= stylesheet_link_tag "application" %>
|
1127
|
+
5: <%= javascript_include_tag "application" %>
|
1128
|
+
6: </head>
|
1129
|
+
7: <body>
|
1130
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
1131
|
+
|
1132
|
+
|
1133
|
+
|
1134
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:03:25 +0000
|
1135
|
+
|
1136
|
+
ActionView::Template::Error (can't convert nil into String):
|
1137
|
+
1: <!DOCTYPE html>
|
1138
|
+
2: <html>
|
1139
|
+
3: <head>
|
1140
|
+
4: <%= stylesheet_link_tag "application" %>
|
1141
|
+
5: <%= javascript_include_tag "application" %>
|
1142
|
+
6: </head>
|
1143
|
+
7: <body>
|
1144
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
1145
|
+
|
1146
|
+
|
1147
|
+
|
1148
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:03:47 +0000
|
1149
|
+
|
1150
|
+
ActionView::Template::Error (can't convert nil into String):
|
1151
|
+
1: <!DOCTYPE html>
|
1152
|
+
2: <html>
|
1153
|
+
3: <head>
|
1154
|
+
4: <%= stylesheet_link_tag "application" %>
|
1155
|
+
5: <%= javascript_include_tag "application" %>
|
1156
|
+
6: </head>
|
1157
|
+
7: <body>
|
1158
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
1159
|
+
|
1160
|
+
|
1161
|
+
|
1162
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:03:48 +0000
|
1163
|
+
|
1164
|
+
ActionView::Template::Error (can't convert nil into String):
|
1165
|
+
1: <!DOCTYPE html>
|
1166
|
+
2: <html>
|
1167
|
+
3: <head>
|
1168
|
+
4: <%= stylesheet_link_tag "application" %>
|
1169
|
+
5: <%= javascript_include_tag "application" %>
|
1170
|
+
6: </head>
|
1171
|
+
7: <body>
|
1172
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3767988682246889202_70246793746160'
|
1173
|
+
|
1174
|
+
|
1175
|
+
|
1176
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:05:24 +0000
|
1177
|
+
|
1178
|
+
ActionView::Template::Error (can't convert nil into String):
|
1179
|
+
1: <!DOCTYPE html>
|
1180
|
+
2: <html>
|
1181
|
+
3: <head>
|
1182
|
+
4: <%= stylesheet_link_tag "application" %>
|
1183
|
+
5: <%= javascript_include_tag "application" %>
|
1184
|
+
6: </head>
|
1185
|
+
7: <body>
|
1186
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb__1908345192106179700_70280908396680'
|
1187
|
+
|
1188
|
+
|
1189
|
+
|
1190
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:05:25 +0000
|
1191
|
+
|
1192
|
+
ActionView::Template::Error (can't convert nil into String):
|
1193
|
+
1: <!DOCTYPE html>
|
1194
|
+
2: <html>
|
1195
|
+
3: <head>
|
1196
|
+
4: <%= stylesheet_link_tag "application" %>
|
1197
|
+
5: <%= javascript_include_tag "application" %>
|
1198
|
+
6: </head>
|
1199
|
+
7: <body>
|
1200
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb__1908345192106179700_70280908396680'
|
1201
|
+
|
1202
|
+
|
1203
|
+
|
1204
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:05:26 +0000
|
1205
|
+
|
1206
|
+
ActionView::Template::Error (can't convert nil into String):
|
1207
|
+
1: <!DOCTYPE html>
|
1208
|
+
2: <html>
|
1209
|
+
3: <head>
|
1210
|
+
4: <%= stylesheet_link_tag "application" %>
|
1211
|
+
5: <%= javascript_include_tag "application" %>
|
1212
|
+
6: </head>
|
1213
|
+
7: <body>
|
1214
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb__1908345192106179700_70280908396680'
|
1215
|
+
|
1216
|
+
|
1217
|
+
|
1218
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:06:01 +0000
|
1219
|
+
|
1220
|
+
ActionView::Template::Error (can't convert nil into String):
|
1221
|
+
1: <!DOCTYPE html>
|
1222
|
+
2: <html>
|
1223
|
+
3: <head>
|
1224
|
+
4: <%= stylesheet_link_tag "application" %>
|
1225
|
+
5: <%= javascript_include_tag "application" %>
|
1226
|
+
6: </head>
|
1227
|
+
7: <body>
|
1228
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___956250237368375857_70147850390100'
|
1229
|
+
|
1230
|
+
|
1231
|
+
|
1232
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:06:02 +0000
|
1233
|
+
|
1234
|
+
ActionView::Template::Error (can't convert nil into String):
|
1235
|
+
1: <!DOCTYPE html>
|
1236
|
+
2: <html>
|
1237
|
+
3: <head>
|
1238
|
+
4: <%= stylesheet_link_tag "application" %>
|
1239
|
+
5: <%= javascript_include_tag "application" %>
|
1240
|
+
6: </head>
|
1241
|
+
7: <body>
|
1242
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___956250237368375857_70147850390100'
|
1243
|
+
|
1244
|
+
|
1245
|
+
|
1246
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:08:12 +0000
|
1247
|
+
|
1248
|
+
ActionView::Template::Error (can't convert nil into String):
|
1249
|
+
1: <!DOCTYPE html>
|
1250
|
+
2: <html>
|
1251
|
+
3: <head>
|
1252
|
+
4: <%= stylesheet_link_tag "application" %>
|
1253
|
+
5: <%= javascript_include_tag "application" %>
|
1254
|
+
6: </head>
|
1255
|
+
7: <body>
|
1256
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___956250237368375857_70147850390100'
|
1257
|
+
|
1258
|
+
|
1259
|
+
|
1260
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:08:13 +0000
|
1261
|
+
|
1262
|
+
ActionView::Template::Error (can't convert nil into String):
|
1263
|
+
1: <!DOCTYPE html>
|
1264
|
+
2: <html>
|
1265
|
+
3: <head>
|
1266
|
+
4: <%= stylesheet_link_tag "application" %>
|
1267
|
+
5: <%= javascript_include_tag "application" %>
|
1268
|
+
6: </head>
|
1269
|
+
7: <body>
|
1270
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___956250237368375857_70147850390100'
|
1271
|
+
|
1272
|
+
|
1273
|
+
|
1274
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:08:15 +0000
|
1275
|
+
|
1276
|
+
ActionView::Template::Error (can't convert nil into String):
|
1277
|
+
1: <!DOCTYPE html>
|
1278
|
+
2: <html>
|
1279
|
+
3: <head>
|
1280
|
+
4: <%= stylesheet_link_tag "application" %>
|
1281
|
+
5: <%= javascript_include_tag "application" %>
|
1282
|
+
6: </head>
|
1283
|
+
7: <body>
|
1284
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___956250237368375857_70147850390100'
|
1285
|
+
|
1286
|
+
|
1287
|
+
|
1288
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:08:38 +0000
|
1289
|
+
|
1290
|
+
ActionView::Template::Error (can't convert nil into String):
|
1291
|
+
1: <!DOCTYPE html>
|
1292
|
+
2: <html>
|
1293
|
+
3: <head>
|
1294
|
+
4: <%= stylesheet_link_tag "application" %>
|
1295
|
+
5: <%= javascript_include_tag "application" %>
|
1296
|
+
6: </head>
|
1297
|
+
7: <body>
|
1298
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___956250237368375857_70147850390100'
|
1299
|
+
|
1300
|
+
|
1301
|
+
|
1302
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:08:39 +0000
|
1303
|
+
|
1304
|
+
ActionView::Template::Error (can't convert nil into String):
|
1305
|
+
1: <!DOCTYPE html>
|
1306
|
+
2: <html>
|
1307
|
+
3: <head>
|
1308
|
+
4: <%= stylesheet_link_tag "application" %>
|
1309
|
+
5: <%= javascript_include_tag "application" %>
|
1310
|
+
6: </head>
|
1311
|
+
7: <body>
|
1312
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___956250237368375857_70147850390100'
|
1313
|
+
|
1314
|
+
|
1315
|
+
|
1316
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:08:54 +0000
|
1317
|
+
|
1318
|
+
ActionView::Template::Error (can't convert nil into String):
|
1319
|
+
1: <!DOCTYPE html>
|
1320
|
+
2: <html>
|
1321
|
+
3: <head>
|
1322
|
+
4: <%= stylesheet_link_tag "application" %>
|
1323
|
+
5: <%= javascript_include_tag "application" %>
|
1324
|
+
6: </head>
|
1325
|
+
7: <body>
|
1326
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___956250237368375857_70147850390100'
|
1327
|
+
|
1328
|
+
|
1329
|
+
|
1330
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:09:16 +0000
|
1331
|
+
|
1332
|
+
ActionView::Template::Error (can't convert nil into String):
|
1333
|
+
1: <!DOCTYPE html>
|
1334
|
+
2: <html>
|
1335
|
+
3: <head>
|
1336
|
+
4: <%= stylesheet_link_tag "application" %>
|
1337
|
+
5: <%= javascript_include_tag "application" %>
|
1338
|
+
6: </head>
|
1339
|
+
7: <body>
|
1340
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___956250237368375857_70147850390100'
|
1341
|
+
|
1342
|
+
|
1343
|
+
|
1344
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:09:53 +0000
|
1345
|
+
|
1346
|
+
ActionView::Template::Error (can't convert nil into String):
|
1347
|
+
1: <!DOCTYPE html>
|
1348
|
+
2: <html>
|
1349
|
+
3: <head>
|
1350
|
+
4: <%= stylesheet_link_tag "application" %>
|
1351
|
+
5: <%= javascript_include_tag "application" %>
|
1352
|
+
6: </head>
|
1353
|
+
7: <body>
|
1354
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb__654887739482441867_70302119755600'
|
1355
|
+
|
1356
|
+
|
1357
|
+
|
1358
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:09:54 +0000
|
1359
|
+
|
1360
|
+
ActionView::Template::Error (can't convert nil into String):
|
1361
|
+
1: <!DOCTYPE html>
|
1362
|
+
2: <html>
|
1363
|
+
3: <head>
|
1364
|
+
4: <%= stylesheet_link_tag "application" %>
|
1365
|
+
5: <%= javascript_include_tag "application" %>
|
1366
|
+
6: </head>
|
1367
|
+
7: <body>
|
1368
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb__654887739482441867_70302119755600'
|
1369
|
+
|
1370
|
+
|
1371
|
+
|
1372
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:09:55 +0000
|
1373
|
+
|
1374
|
+
ActionView::Template::Error (can't convert nil into String):
|
1375
|
+
1: <!DOCTYPE html>
|
1376
|
+
2: <html>
|
1377
|
+
3: <head>
|
1378
|
+
4: <%= stylesheet_link_tag "application" %>
|
1379
|
+
5: <%= javascript_include_tag "application" %>
|
1380
|
+
6: </head>
|
1381
|
+
7: <body>
|
1382
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb__654887739482441867_70302119755600'
|
1383
|
+
|
1384
|
+
|
1385
|
+
|
1386
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:09:55 +0000
|
1387
|
+
|
1388
|
+
ActionView::Template::Error (can't convert nil into String):
|
1389
|
+
1: <!DOCTYPE html>
|
1390
|
+
2: <html>
|
1391
|
+
3: <head>
|
1392
|
+
4: <%= stylesheet_link_tag "application" %>
|
1393
|
+
5: <%= javascript_include_tag "application" %>
|
1394
|
+
6: </head>
|
1395
|
+
7: <body>
|
1396
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb__654887739482441867_70302119755600'
|
1397
|
+
|
1398
|
+
|
1399
|
+
|
1400
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:09:55 +0000
|
1401
|
+
|
1402
|
+
ActionView::Template::Error (can't convert nil into String):
|
1403
|
+
1: <!DOCTYPE html>
|
1404
|
+
2: <html>
|
1405
|
+
3: <head>
|
1406
|
+
4: <%= stylesheet_link_tag "application" %>
|
1407
|
+
5: <%= javascript_include_tag "application" %>
|
1408
|
+
6: </head>
|
1409
|
+
7: <body>
|
1410
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb__654887739482441867_70302119755600'
|
1411
|
+
|
1412
|
+
|
1413
|
+
|
1414
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:10:18 +0000
|
1415
|
+
|
1416
|
+
ActionView::Template::Error (can't convert nil into String):
|
1417
|
+
1: <!DOCTYPE html>
|
1418
|
+
2: <html>
|
1419
|
+
3: <head>
|
1420
|
+
4: <!-- <%= stylesheet_link_tag "application" %>
|
1421
|
+
5: <%= javascript_include_tag "application" %> -->
|
1422
|
+
6: </head>
|
1423
|
+
7: <body>
|
1424
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___2710799496301299765_70135364343960'
|
1425
|
+
|
1426
|
+
|
1427
|
+
|
1428
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:10:19 +0000
|
1429
|
+
|
1430
|
+
ActionView::Template::Error (can't convert nil into String):
|
1431
|
+
1: <!DOCTYPE html>
|
1432
|
+
2: <html>
|
1433
|
+
3: <head>
|
1434
|
+
4: <!-- <%= stylesheet_link_tag "application" %>
|
1435
|
+
5: <%= javascript_include_tag "application" %> -->
|
1436
|
+
6: </head>
|
1437
|
+
7: <body>
|
1438
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___2710799496301299765_70135364343960'
|
1439
|
+
|
1440
|
+
|
1441
|
+
|
1442
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:10:43 +0000
|
1443
|
+
|
1444
|
+
|
1445
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:10:44 +0000
|
1446
|
+
|
1447
|
+
|
1448
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:10:45 +0000
|
1449
|
+
|
1450
|
+
|
1451
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:11:14 +0000
|
1452
|
+
|
1453
|
+
|
1454
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:11:16 +0000
|
1455
|
+
|
1456
|
+
|
1457
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:11:35 +0000
|
1458
|
+
|
1459
|
+
|
1460
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:11:36 +0000
|
1461
|
+
|
1462
|
+
|
1463
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:12:07 +0000
|
1464
|
+
|
1465
|
+
|
1466
|
+
Started GET "/?error=xxx" for 127.0.0.1 at 2013-12-14 19:12:10 +0000
|
1467
|
+
|
1468
|
+
|
1469
|
+
Started GET "/?error=xxx" for 127.0.0.1 at 2013-12-14 19:12:13 +0000
|
1470
|
+
|
1471
|
+
|
1472
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:12:42 +0000
|
1473
|
+
|
1474
|
+
ActionView::Template::Error (can't convert nil into String):
|
1475
|
+
1: <!DOCTYPE html>
|
1476
|
+
2: <html>
|
1477
|
+
3: <head>
|
1478
|
+
4: <%= stylesheet_link_tag "application" %>
|
1479
|
+
5: <%# javascript_include_tag "application" %>
|
1480
|
+
6: </head>
|
1481
|
+
7: <body>
|
1482
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___71527264703487307_70260774312800'
|
1483
|
+
|
1484
|
+
|
1485
|
+
|
1486
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:12:42 +0000
|
1487
|
+
|
1488
|
+
ActionView::Template::Error (can't convert nil into String):
|
1489
|
+
1: <!DOCTYPE html>
|
1490
|
+
2: <html>
|
1491
|
+
3: <head>
|
1492
|
+
4: <%= stylesheet_link_tag "application" %>
|
1493
|
+
5: <%# javascript_include_tag "application" %>
|
1494
|
+
6: </head>
|
1495
|
+
7: <body>
|
1496
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___71527264703487307_70260774312800'
|
1497
|
+
|
1498
|
+
|
1499
|
+
|
1500
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:14:15 +0000
|
1501
|
+
|
1502
|
+
ActionView::Template::Error (can't convert nil into String):
|
1503
|
+
1: <!DOCTYPE html>
|
1504
|
+
2: <html>
|
1505
|
+
3: <head>
|
1506
|
+
4: <%= stylesheet_link_tag "application" %>
|
1507
|
+
5: <%# javascript_include_tag "application" %>
|
1508
|
+
6: </head>
|
1509
|
+
7: <body>
|
1510
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3305885066666865520_70339116843400'
|
1511
|
+
|
1512
|
+
|
1513
|
+
|
1514
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:14:16 +0000
|
1515
|
+
|
1516
|
+
ActionView::Template::Error (can't convert nil into String):
|
1517
|
+
1: <!DOCTYPE html>
|
1518
|
+
2: <html>
|
1519
|
+
3: <head>
|
1520
|
+
4: <%= stylesheet_link_tag "application" %>
|
1521
|
+
5: <%# javascript_include_tag "application" %>
|
1522
|
+
6: </head>
|
1523
|
+
7: <body>
|
1524
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3305885066666865520_70339116843400'
|
1525
|
+
|
1526
|
+
|
1527
|
+
|
1528
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:14:17 +0000
|
1529
|
+
|
1530
|
+
ActionView::Template::Error (can't convert nil into String):
|
1531
|
+
1: <!DOCTYPE html>
|
1532
|
+
2: <html>
|
1533
|
+
3: <head>
|
1534
|
+
4: <%= stylesheet_link_tag "application" %>
|
1535
|
+
5: <%# javascript_include_tag "application" %>
|
1536
|
+
6: </head>
|
1537
|
+
7: <body>
|
1538
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3305885066666865520_70339116843400'
|
1539
|
+
|
1540
|
+
|
1541
|
+
|
1542
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:14:18 +0000
|
1543
|
+
|
1544
|
+
ActionView::Template::Error (can't convert nil into String):
|
1545
|
+
1: <!DOCTYPE html>
|
1546
|
+
2: <html>
|
1547
|
+
3: <head>
|
1548
|
+
4: <%= stylesheet_link_tag "application" %>
|
1549
|
+
5: <%# javascript_include_tag "application" %>
|
1550
|
+
6: </head>
|
1551
|
+
7: <body>
|
1552
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3305885066666865520_70339116843400'
|
1553
|
+
|
1554
|
+
|
1555
|
+
|
1556
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:16:08 +0000
|
1557
|
+
|
1558
|
+
ActionView::Template::Error (can't convert nil into String):
|
1559
|
+
1: <!DOCTYPE html>
|
1560
|
+
2: <html>
|
1561
|
+
3: <head>
|
1562
|
+
4: <%= stylesheet_link_tag "application" %>
|
1563
|
+
5: <%# javascript_include_tag "application" %>
|
1564
|
+
6: </head>
|
1565
|
+
7: <body>
|
1566
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3135386327192409997_70313082337680'
|
1567
|
+
|
1568
|
+
|
1569
|
+
|
1570
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:16:09 +0000
|
1571
|
+
|
1572
|
+
ActionView::Template::Error (can't convert nil into String):
|
1573
|
+
1: <!DOCTYPE html>
|
1574
|
+
2: <html>
|
1575
|
+
3: <head>
|
1576
|
+
4: <%= stylesheet_link_tag "application" %>
|
1577
|
+
5: <%# javascript_include_tag "application" %>
|
1578
|
+
6: </head>
|
1579
|
+
7: <body>
|
1580
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3135386327192409997_70313082337680'
|
1581
|
+
|
1582
|
+
|
1583
|
+
|
1584
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:16:15 +0000
|
1585
|
+
|
1586
|
+
ActionView::Template::Error (can't convert nil into String):
|
1587
|
+
1: <!DOCTYPE html>
|
1588
|
+
2: <html>
|
1589
|
+
3: <head>
|
1590
|
+
4: <%= stylesheet_link_tag "application" %>
|
1591
|
+
5: <%# javascript_include_tag "application" %>
|
1592
|
+
6: </head>
|
1593
|
+
7: <body>
|
1594
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3135386327192409997_70313082337680'
|
1595
|
+
|
1596
|
+
|
1597
|
+
|
1598
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:16:16 +0000
|
1599
|
+
|
1600
|
+
ActionView::Template::Error (can't convert nil into String):
|
1601
|
+
1: <!DOCTYPE html>
|
1602
|
+
2: <html>
|
1603
|
+
3: <head>
|
1604
|
+
4: <%= stylesheet_link_tag "application" %>
|
1605
|
+
5: <%# javascript_include_tag "application" %>
|
1606
|
+
6: </head>
|
1607
|
+
7: <body>
|
1608
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3135386327192409997_70313082337680'
|
1609
|
+
|
1610
|
+
|
1611
|
+
|
1612
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:17:19 +0000
|
1613
|
+
|
1614
|
+
ActionView::Template::Error (can't convert nil into String):
|
1615
|
+
1: <!DOCTYPE html>
|
1616
|
+
2: <html>
|
1617
|
+
3: <head>
|
1618
|
+
4: <%= stylesheet_link_tag "application" %>
|
1619
|
+
5: <%# javascript_include_tag "application" %>
|
1620
|
+
6: </head>
|
1621
|
+
7: <body>
|
1622
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3135386327192409997_70313082337680'
|
1623
|
+
|
1624
|
+
|
1625
|
+
|
1626
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:17:20 +0000
|
1627
|
+
|
1628
|
+
ActionView::Template::Error (can't convert nil into String):
|
1629
|
+
1: <!DOCTYPE html>
|
1630
|
+
2: <html>
|
1631
|
+
3: <head>
|
1632
|
+
4: <%= stylesheet_link_tag "application" %>
|
1633
|
+
5: <%# javascript_include_tag "application" %>
|
1634
|
+
6: </head>
|
1635
|
+
7: <body>
|
1636
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3135386327192409997_70313082337680'
|
1637
|
+
|
1638
|
+
|
1639
|
+
|
1640
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:17:22 +0000
|
1641
|
+
|
1642
|
+
ActionView::Template::Error (can't convert nil into String):
|
1643
|
+
1: <!DOCTYPE html>
|
1644
|
+
2: <html>
|
1645
|
+
3: <head>
|
1646
|
+
4: <%= stylesheet_link_tag "application" %>
|
1647
|
+
5: <%# javascript_include_tag "application" %>
|
1648
|
+
6: </head>
|
1649
|
+
7: <body>
|
1650
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3135386327192409997_70313082337680'
|
1651
|
+
|
1652
|
+
|
1653
|
+
|
1654
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:17:22 +0000
|
1655
|
+
|
1656
|
+
ActionView::Template::Error (can't convert nil into String):
|
1657
|
+
1: <!DOCTYPE html>
|
1658
|
+
2: <html>
|
1659
|
+
3: <head>
|
1660
|
+
4: <%= stylesheet_link_tag "application" %>
|
1661
|
+
5: <%# javascript_include_tag "application" %>
|
1662
|
+
6: </head>
|
1663
|
+
7: <body>
|
1664
|
+
app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3135386327192409997_70313082337680'
|
1665
|
+
|
1666
|
+
|
1667
|
+
|
1668
|
+
Started GET "/assets" for 127.0.0.1 at 2013-12-14 19:17:34 +0000
|
1669
|
+
|
1670
|
+
ActionController::RoutingError (No route matches [GET] "/assets"):
|
1671
|
+
|
1672
|
+
|
1673
|
+
|
1674
|
+
|
1675
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:17:38 +0000
|
1676
|
+
|
1677
|
+
ActionController::RoutingError (No route matches [GET] "/assets/application.js"):
|
1678
|
+
|
1679
|
+
|
1680
|
+
|
1681
|
+
|
1682
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:17:51 +0000
|
1683
|
+
|
1684
|
+
ActionController::RoutingError (No route matches [GET] "/assets/application.css"):
|
1685
|
+
|
1686
|
+
|
1687
|
+
|
1688
|
+
|
1689
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:22:17 +0000
|
1690
|
+
Served asset /application.css - 200 OK (6ms)
|
1691
|
+
|
1692
|
+
|
1693
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:22:19 +0000
|
1694
|
+
Processing by FlashController#index as HTML
|
1695
|
+
Rendered flash/index.html.erb within layouts/application (3.0ms)
|
1696
|
+
Completed 200 OK in 52ms (Views: 50.7ms)
|
1697
|
+
|
1698
|
+
|
1699
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:22:19 +0000
|
1700
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1701
|
+
|
1702
|
+
|
1703
|
+
Started GET "/?error=xxx" for 127.0.0.1 at 2013-12-14 19:22:31 +0000
|
1704
|
+
Processing by FlashController#index as HTML
|
1705
|
+
Parameters: {"error"=>"xxx"}
|
1706
|
+
Rendered flash/index.html.erb within layouts/application (0.2ms)
|
1707
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1708
|
+
|
1709
|
+
|
1710
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:22:31 +0000
|
1711
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1712
|
+
|
1713
|
+
|
1714
|
+
Started GET "/?error=xxx" for 127.0.0.1 at 2013-12-14 19:22:34 +0000
|
1715
|
+
Processing by FlashController#index as HTML
|
1716
|
+
Parameters: {"error"=>"xxx"}
|
1717
|
+
Rendered flash/index.html.erb within layouts/application (0.1ms)
|
1718
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
1719
|
+
|
1720
|
+
|
1721
|
+
Started GET "/?error=xxx" for 127.0.0.1 at 2013-12-14 19:22:58 +0000
|
1722
|
+
Processing by FlashController#index as HTML
|
1723
|
+
Parameters: {"error"=>"xxx"}
|
1724
|
+
Rendered flash/index.html.erb within layouts/application (2.8ms)
|
1725
|
+
Completed 200 OK in 43ms (Views: 15.0ms)
|
1726
|
+
|
1727
|
+
|
1728
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:22:58 +0000
|
1729
|
+
Served asset /application.css - 304 Not Modified (3ms)
|
1730
|
+
|
1731
|
+
|
1732
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:22:58 +0000
|
1733
|
+
Served asset /application.js - 200 OK (4ms)
|
1734
|
+
|
1735
|
+
|
1736
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:23:01 +0000
|
1737
|
+
Processing by FlashController#index as HTML
|
1738
|
+
Parameters: {"notice"=>"xxx"}
|
1739
|
+
Rendered flash/index.html.erb within layouts/application (0.2ms)
|
1740
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1741
|
+
|
1742
|
+
|
1743
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:23:01 +0000
|
1744
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1745
|
+
|
1746
|
+
|
1747
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:23:24 +0000
|
1748
|
+
Processing by FlashController#index as HTML
|
1749
|
+
Parameters: {"notice"=>"xxx"}
|
1750
|
+
Rendered flash/index.html.erb within layouts/application (0.1ms)
|
1751
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1752
|
+
|
1753
|
+
|
1754
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:23:24 +0000
|
1755
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1756
|
+
|
1757
|
+
|
1758
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:23:24 +0000
|
1759
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1760
|
+
|
1761
|
+
|
1762
|
+
Started GET "/?notice=xxx" for 127.0.0.1 at 2013-12-14 19:23:33 +0000
|
1763
|
+
Processing by FlashController#index as HTML
|
1764
|
+
Parameters: {"notice"=>"xxx"}
|
1765
|
+
Rendered flash/index.html.erb within layouts/application (0.1ms)
|
1766
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1767
|
+
|
1768
|
+
|
1769
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:23:33 +0000
|
1770
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1771
|
+
|
1772
|
+
|
1773
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:23:33 +0000
|
1774
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1775
|
+
|
1776
|
+
|
1777
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:24:42 +0000
|
1778
|
+
Processing by FlashController#index as HTML
|
1779
|
+
Rendered flash/index.html.erb within layouts/application (2.7ms)
|
1780
|
+
Completed 200 OK in 38ms (Views: 35.7ms)
|
1781
|
+
|
1782
|
+
|
1783
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:24:42 +0000
|
1784
|
+
Served asset /application.js - 304 Not Modified (8ms)
|
1785
|
+
|
1786
|
+
|
1787
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:24:42 +0000
|
1788
|
+
Served asset /application.css - 304 Not Modified (6ms)
|
1789
|
+
|
1790
|
+
|
1791
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:26:01 +0000
|
1792
|
+
Processing by FlashController#index as HTML
|
1793
|
+
Rendered flash/index.html.erb within layouts/application (3.3ms)
|
1794
|
+
Completed 200 OK in 48ms (Views: 45.1ms)
|
1795
|
+
|
1796
|
+
|
1797
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:26:01 +0000
|
1798
|
+
Served asset /application.css - 304 Not Modified (7ms)
|
1799
|
+
|
1800
|
+
|
1801
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:26:01 +0000
|
1802
|
+
Served asset /application.js - 304 Not Modified (4ms)
|
1803
|
+
|
1804
|
+
|
1805
|
+
Started GET "/?notice=This+is+a+notice." for 127.0.0.1 at 2013-12-14 19:26:06 +0000
|
1806
|
+
Processing by FlashController#index as HTML
|
1807
|
+
Parameters: {"notice"=>"This is a notice."}
|
1808
|
+
Rendered flash/index.html.erb within layouts/application (0.6ms)
|
1809
|
+
Completed 200 OK in 3ms (Views: 1.9ms)
|
1810
|
+
|
1811
|
+
|
1812
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:26:06 +0000
|
1813
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1814
|
+
|
1815
|
+
|
1816
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:26:06 +0000
|
1817
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1818
|
+
|
1819
|
+
|
1820
|
+
Started GET "/?notice=This+is+a+notice." for 127.0.0.1 at 2013-12-14 19:26:55 +0000
|
1821
|
+
Processing by FlashController#index as HTML
|
1822
|
+
Parameters: {"notice"=>"This is a notice."}
|
1823
|
+
Rendered flash/index.html.erb within layouts/application (3.5ms)
|
1824
|
+
Completed 200 OK in 18ms (Views: 15.5ms)
|
1825
|
+
|
1826
|
+
|
1827
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:26:55 +0000
|
1828
|
+
Served asset /application.css - 304 Not Modified (5ms)
|
1829
|
+
|
1830
|
+
|
1831
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:26:55 +0000
|
1832
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
1833
|
+
|
1834
|
+
|
1835
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:26:58 +0000
|
1836
|
+
Processing by FlashController#index as HTML
|
1837
|
+
Rendered flash/index.html.erb within layouts/application (3.0ms)
|
1838
|
+
Completed 200 OK in 5ms (Views: 4.4ms)
|
1839
|
+
|
1840
|
+
|
1841
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:26:58 +0000
|
1842
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1843
|
+
|
1844
|
+
|
1845
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:26:58 +0000
|
1846
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1847
|
+
|
1848
|
+
|
1849
|
+
Started GET "/?notice=This+is+a+notice." for 127.0.0.1 at 2013-12-14 19:27:02 +0000
|
1850
|
+
Processing by FlashController#index as HTML
|
1851
|
+
Parameters: {"notice"=>"This is a notice."}
|
1852
|
+
Rendered flash/index.html.erb within layouts/application (0.9ms)
|
1853
|
+
Completed 200 OK in 2ms (Views: 2.0ms)
|
1854
|
+
|
1855
|
+
|
1856
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:27:02 +0000
|
1857
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1858
|
+
|
1859
|
+
|
1860
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:27:02 +0000
|
1861
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1862
|
+
|
1863
|
+
|
1864
|
+
Started GET "/?error=This+is+an+error.¬ice=This+is+a+notice." for 127.0.0.1 at 2013-12-14 19:27:03 +0000
|
1865
|
+
Processing by FlashController#index as HTML
|
1866
|
+
Parameters: {"error"=>"This is an error.", "notice"=>"This is a notice."}
|
1867
|
+
Rendered flash/index.html.erb within layouts/application (1.1ms)
|
1868
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
1869
|
+
|
1870
|
+
|
1871
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:27:03 +0000
|
1872
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1873
|
+
|
1874
|
+
|
1875
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:27:03 +0000
|
1876
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1877
|
+
|
1878
|
+
|
1879
|
+
Started GET "/?alert=This+is+an+alert.&error=This+is+an+error.¬ice=This+is+a+notice." for 127.0.0.1 at 2013-12-14 19:27:05 +0000
|
1880
|
+
Processing by FlashController#index as HTML
|
1881
|
+
Parameters: {"alert"=>"This is an alert.", "error"=>"This is an error.", "notice"=>"This is a notice."}
|
1882
|
+
Rendered flash/index.html.erb within layouts/application (1.2ms)
|
1883
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
1884
|
+
|
1885
|
+
|
1886
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:27:05 +0000
|
1887
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1888
|
+
|
1889
|
+
|
1890
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:27:05 +0000
|
1891
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1892
|
+
|
1893
|
+
|
1894
|
+
Started GET "/?alert=This+is+an+alert.&error=This+is+an+error.¬ice=This+is+a+notice." for 127.0.0.1 at 2013-12-14 19:28:41 +0000
|
1895
|
+
Processing by FlashController#index as HTML
|
1896
|
+
Parameters: {"alert"=>"This is an alert.", "error"=>"This is an error.", "notice"=>"This is a notice."}
|
1897
|
+
Rendered flash/index.html.erb within layouts/application (4.0ms)
|
1898
|
+
Completed 200 OK in 18ms (Views: 15.0ms)
|
1899
|
+
|
1900
|
+
|
1901
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:28:41 +0000
|
1902
|
+
Served asset /application.css - 304 Not Modified (5ms)
|
1903
|
+
|
1904
|
+
|
1905
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:28:41 +0000
|
1906
|
+
Served asset /application.js - 304 Not Modified (3ms)
|
1907
|
+
|
1908
|
+
|
1909
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:28:45 +0000
|
1910
|
+
Processing by FlashController#index as HTML
|
1911
|
+
Rendered flash/index.html.erb within layouts/application (1.0ms)
|
1912
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
1913
|
+
|
1914
|
+
|
1915
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:28:45 +0000
|
1916
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1917
|
+
|
1918
|
+
|
1919
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:28:45 +0000
|
1920
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1921
|
+
|
1922
|
+
|
1923
|
+
Started GET "/?notice=This+is+a+notice." for 127.0.0.1 at 2013-12-14 19:28:47 +0000
|
1924
|
+
Processing by FlashController#index as HTML
|
1925
|
+
Parameters: {"notice"=>"This is a notice."}
|
1926
|
+
Rendered flash/index.html.erb within layouts/application (0.8ms)
|
1927
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
1928
|
+
|
1929
|
+
|
1930
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:28:47 +0000
|
1931
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1932
|
+
|
1933
|
+
|
1934
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:28:47 +0000
|
1935
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1936
|
+
|
1937
|
+
|
1938
|
+
Started GET "/?error=This+is+an+error." for 127.0.0.1 at 2013-12-14 19:28:48 +0000
|
1939
|
+
Processing by FlashController#index as HTML
|
1940
|
+
Parameters: {"error"=>"This is an error."}
|
1941
|
+
Rendered flash/index.html.erb within layouts/application (0.8ms)
|
1942
|
+
Completed 200 OK in 3ms (Views: 2.0ms)
|
1943
|
+
|
1944
|
+
|
1945
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:28:48 +0000
|
1946
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1947
|
+
|
1948
|
+
|
1949
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:28:48 +0000
|
1950
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1951
|
+
|
1952
|
+
|
1953
|
+
Started GET "/?alert=This+is+an+alert." for 127.0.0.1 at 2013-12-14 19:28:50 +0000
|
1954
|
+
Processing by FlashController#index as HTML
|
1955
|
+
Parameters: {"alert"=>"This is an alert."}
|
1956
|
+
Rendered flash/index.html.erb within layouts/application (0.6ms)
|
1957
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
1958
|
+
|
1959
|
+
|
1960
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:28:50 +0000
|
1961
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1962
|
+
|
1963
|
+
|
1964
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:28:50 +0000
|
1965
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1966
|
+
|
1967
|
+
|
1968
|
+
Started GET "/?alert=This+is+an+alert." for 127.0.0.1 at 2013-12-14 19:28:54 +0000
|
1969
|
+
Processing by FlashController#index as HTML
|
1970
|
+
Parameters: {"alert"=>"This is an alert."}
|
1971
|
+
Rendered flash/index.html.erb within layouts/application (0.7ms)
|
1972
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
1973
|
+
|
1974
|
+
|
1975
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:28:54 +0000
|
1976
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1977
|
+
|
1978
|
+
|
1979
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:28:54 +0000
|
1980
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1981
|
+
|
1982
|
+
|
1983
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:30:05 +0000
|
1984
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1985
|
+
|
1986
|
+
|
1987
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:31:14 +0000
|
1988
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1989
|
+
|
1990
|
+
|
1991
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:31:17 +0000
|
1992
|
+
Processing by FlashController#index as HTML
|
1993
|
+
Rendered flash/index.html.erb within layouts/application (0.9ms)
|
1994
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
1995
|
+
|
1996
|
+
|
1997
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:31:17 +0000
|
1998
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1999
|
+
|
2000
|
+
|
2001
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:31:17 +0000
|
2002
|
+
Compiled humane-rails.js (2ms) (pid 10391)
|
2003
|
+
Compiled application.js (1ms) (pid 10391)
|
2004
|
+
Served asset /application.js - 200 OK (15ms)
|
2005
|
+
|
2006
|
+
|
2007
|
+
Started GET "/?error=This+is+an+error." for 127.0.0.1 at 2013-12-14 19:31:20 +0000
|
2008
|
+
Processing by FlashController#index as HTML
|
2009
|
+
Parameters: {"error"=>"This is an error."}
|
2010
|
+
Rendered flash/index.html.erb within layouts/application (0.8ms)
|
2011
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
2012
|
+
|
2013
|
+
|
2014
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:31:20 +0000
|
2015
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2016
|
+
|
2017
|
+
|
2018
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:31:20 +0000
|
2019
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2020
|
+
|
2021
|
+
|
2022
|
+
Started GET "/?error=This+is+an+error." for 127.0.0.1 at 2013-12-14 19:31:24 +0000
|
2023
|
+
Processing by FlashController#index as HTML
|
2024
|
+
Parameters: {"error"=>"This is an error."}
|
2025
|
+
Rendered flash/index.html.erb within layouts/application (0.5ms)
|
2026
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
2027
|
+
|
2028
|
+
|
2029
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:31:24 +0000
|
2030
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2031
|
+
|
2032
|
+
|
2033
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:31:24 +0000
|
2034
|
+
Compiled humane-rails.js (1ms) (pid 10391)
|
2035
|
+
Compiled application.js (1ms) (pid 10391)
|
2036
|
+
Served asset /application.js - 200 OK (9ms)
|
2037
|
+
|
2038
|
+
|
2039
|
+
Started GET "/?error=This+is+an+error." for 127.0.0.1 at 2013-12-14 19:31:32 +0000
|
2040
|
+
Processing by FlashController#index as HTML
|
2041
|
+
Parameters: {"error"=>"This is an error."}
|
2042
|
+
Rendered flash/index.html.erb within layouts/application (0.7ms)
|
2043
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
2044
|
+
|
2045
|
+
|
2046
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:31:32 +0000
|
2047
|
+
Compiled humane-rails.js (1ms) (pid 10391)
|
2048
|
+
Compiled application.js (1ms) (pid 10391)
|
2049
|
+
Served asset /application.js - 200 OK (12ms)
|
2050
|
+
|
2051
|
+
|
2052
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:31:32 +0000
|
2053
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2054
|
+
|
2055
|
+
|
2056
|
+
Started GET "/?error=This+is+an+error." for 127.0.0.1 at 2013-12-14 19:32:45 +0000
|
2057
|
+
Processing by FlashController#index as HTML
|
2058
|
+
Parameters: {"error"=>"This is an error."}
|
2059
|
+
Rendered flash/index.html.erb within layouts/application (0.8ms)
|
2060
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
2061
|
+
|
2062
|
+
|
2063
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:32:46 +0000
|
2064
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2065
|
+
|
2066
|
+
|
2067
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:32:46 +0000
|
2068
|
+
Compiled humane-rails.js (1ms) (pid 10391)
|
2069
|
+
Compiled application.js (1ms) (pid 10391)
|
2070
|
+
Served asset /application.js - 200 OK (11ms)
|
2071
|
+
|
2072
|
+
|
2073
|
+
Started GET "/?alert=This+is+an+alert." for 127.0.0.1 at 2013-12-14 19:32:48 +0000
|
2074
|
+
Processing by FlashController#index as HTML
|
2075
|
+
Parameters: {"alert"=>"This is an alert."}
|
2076
|
+
Rendered flash/index.html.erb within layouts/application (0.8ms)
|
2077
|
+
Completed 200 OK in 2ms (Views: 2.0ms)
|
2078
|
+
|
2079
|
+
|
2080
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:32:48 +0000
|
2081
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2082
|
+
|
2083
|
+
|
2084
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:32:48 +0000
|
2085
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2086
|
+
|
2087
|
+
|
2088
|
+
Started GET "/?error=This+is+an+error." for 127.0.0.1 at 2013-12-14 19:32:49 +0000
|
2089
|
+
Processing by FlashController#index as HTML
|
2090
|
+
Parameters: {"error"=>"This is an error."}
|
2091
|
+
Rendered flash/index.html.erb within layouts/application (0.8ms)
|
2092
|
+
Completed 200 OK in 3ms (Views: 2.1ms)
|
2093
|
+
|
2094
|
+
|
2095
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:32:49 +0000
|
2096
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2097
|
+
|
2098
|
+
|
2099
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:32:49 +0000
|
2100
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2101
|
+
|
2102
|
+
|
2103
|
+
Started GET "/?error=This+is+an+error." for 127.0.0.1 at 2013-12-14 19:33:05 +0000
|
2104
|
+
Processing by FlashController#index as HTML
|
2105
|
+
Parameters: {"error"=>"This is an error."}
|
2106
|
+
Rendered flash/index.html.erb within layouts/application (0.8ms)
|
2107
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
2108
|
+
|
2109
|
+
|
2110
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:33:05 +0000
|
2111
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2112
|
+
|
2113
|
+
|
2114
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:33:05 +0000
|
2115
|
+
Compiled humane-rails.js (1ms) (pid 10391)
|
2116
|
+
Compiled application.js (1ms) (pid 10391)
|
2117
|
+
Served asset /application.js - 200 OK (10ms)
|
2118
|
+
|
2119
|
+
|
2120
|
+
Started GET "/?alert=This+is+an+alert." for 127.0.0.1 at 2013-12-14 19:33:11 +0000
|
2121
|
+
Processing by FlashController#index as HTML
|
2122
|
+
Parameters: {"alert"=>"This is an alert."}
|
2123
|
+
Rendered flash/index.html.erb within layouts/application (0.8ms)
|
2124
|
+
Completed 200 OK in 2ms (Views: 2.0ms)
|
2125
|
+
|
2126
|
+
|
2127
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:33:12 +0000
|
2128
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2129
|
+
|
2130
|
+
|
2131
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:33:12 +0000
|
2132
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2133
|
+
|
2134
|
+
|
2135
|
+
Started GET "/?alert=This+is+an+alert." for 127.0.0.1 at 2013-12-14 19:34:16 +0000
|
2136
|
+
Processing by FlashController#index as HTML
|
2137
|
+
Parameters: {"alert"=>"This is an alert."}
|
2138
|
+
Rendered flash/index.html.erb within layouts/application (2.6ms)
|
2139
|
+
Completed 200 OK in 20ms (Views: 16.9ms)
|
2140
|
+
|
2141
|
+
|
2142
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:34:16 +0000
|
2143
|
+
Served asset /application.css - 304 Not Modified (7ms)
|
2144
|
+
|
2145
|
+
|
2146
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:34:16 +0000
|
2147
|
+
Compiled humane-rails.js (1ms) (pid 12360)
|
2148
|
+
Compiled application.js (2ms) (pid 12360)
|
2149
|
+
Served asset /application.js - 200 OK (17ms)
|
2150
|
+
|
2151
|
+
|
2152
|
+
Started GET "/?error=This+is+an+error." for 127.0.0.1 at 2013-12-14 19:34:18 +0000
|
2153
|
+
Processing by FlashController#index as HTML
|
2154
|
+
Parameters: {"error"=>"This is an error."}
|
2155
|
+
Rendered flash/index.html.erb within layouts/application (0.7ms)
|
2156
|
+
Completed 200 OK in 2ms (Views: 2.0ms)
|
2157
|
+
|
2158
|
+
|
2159
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:34:18 +0000
|
2160
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2161
|
+
|
2162
|
+
|
2163
|
+
Started GET "/?notice=This+is+a+notice." for 127.0.0.1 at 2013-12-14 19:34:19 +0000
|
2164
|
+
Processing by FlashController#index as HTML
|
2165
|
+
Parameters: {"notice"=>"This is a notice."}
|
2166
|
+
Rendered flash/index.html.erb within layouts/application (1.0ms)
|
2167
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
2168
|
+
|
2169
|
+
|
2170
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:34:19 +0000
|
2171
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2172
|
+
|
2173
|
+
|
2174
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:34:19 +0000
|
2175
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2176
|
+
|
2177
|
+
|
2178
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:36:03 +0000
|
2179
|
+
Processing by FlashController#index as HTML
|
2180
|
+
Rendered flash/index.html.erb within layouts/application (2.7ms)
|
2181
|
+
Completed 200 OK in 15ms (Views: 12.4ms)
|
2182
|
+
|
2183
|
+
|
2184
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:36:03 +0000
|
2185
|
+
Served asset /application.css - 304 Not Modified (8ms)
|
2186
|
+
|
2187
|
+
|
2188
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:36:03 +0000
|
2189
|
+
Compiled humane-rails.js (1ms) (pid 13088)
|
2190
|
+
Compiled application.js (1ms) (pid 13088)
|
2191
|
+
Served asset /application.js - 200 OK (12ms)
|
2192
|
+
|
2193
|
+
|
2194
|
+
Started GET "/?notice=This+is+a+notice." for 127.0.0.1 at 2013-12-14 19:36:07 +0000
|
2195
|
+
Processing by FlashController#index as HTML
|
2196
|
+
Parameters: {"notice"=>"This is a notice."}
|
2197
|
+
Rendered flash/index.html.erb within layouts/application (0.8ms)
|
2198
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
2199
|
+
|
2200
|
+
|
2201
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:36:08 +0000
|
2202
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2203
|
+
|
2204
|
+
|
2205
|
+
Started GET "/?error=This+is+an+error." for 127.0.0.1 at 2013-12-14 19:36:12 +0000
|
2206
|
+
Processing by FlashController#index as HTML
|
2207
|
+
Parameters: {"error"=>"This is an error."}
|
2208
|
+
Rendered flash/index.html.erb within layouts/application (0.8ms)
|
2209
|
+
Completed 200 OK in 3ms (Views: 2.1ms)
|
2210
|
+
|
2211
|
+
|
2212
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:36:12 +0000
|
2213
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2214
|
+
|
2215
|
+
|
2216
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:36:12 +0000
|
2217
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2218
|
+
|
2219
|
+
|
2220
|
+
Started GET "/?alert=This+is+an+alert." for 127.0.0.1 at 2013-12-14 19:36:15 +0000
|
2221
|
+
Processing by FlashController#index as HTML
|
2222
|
+
Parameters: {"alert"=>"This is an alert."}
|
2223
|
+
Rendered flash/index.html.erb within layouts/application (0.8ms)
|
2224
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
2225
|
+
|
2226
|
+
|
2227
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:36:15 +0000
|
2228
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2229
|
+
|
2230
|
+
|
2231
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:36:15 +0000
|
2232
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2233
|
+
|
2234
|
+
|
2235
|
+
Started GET "/" for 127.0.0.1 at 2013-12-14 19:48:28 +0000
|
2236
|
+
Processing by FlashController#index as HTML
|
2237
|
+
Rendered flash/index.html.erb within layouts/application (4.0ms)
|
2238
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
2239
|
+
|
2240
|
+
|
2241
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:48:29 +0000
|
2242
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2243
|
+
|
2244
|
+
|
2245
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:48:29 +0000
|
2246
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2247
|
+
|
2248
|
+
|
2249
|
+
Started GET "/?notice=This+is+a+notice." for 127.0.0.1 at 2013-12-14 19:48:34 +0000
|
2250
|
+
Processing by FlashController#index as HTML
|
2251
|
+
Parameters: {"notice"=>"This is a notice."}
|
2252
|
+
Rendered flash/index.html.erb within layouts/application (1.7ms)
|
2253
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
2254
|
+
|
2255
|
+
|
2256
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:48:34 +0000
|
2257
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2258
|
+
|
2259
|
+
|
2260
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:48:34 +0000
|
2261
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2262
|
+
|
2263
|
+
|
2264
|
+
Started GET "/?error=This+is+an+error." for 127.0.0.1 at 2013-12-14 19:48:37 +0000
|
2265
|
+
Processing by FlashController#index as HTML
|
2266
|
+
Parameters: {"error"=>"This is an error."}
|
2267
|
+
Rendered flash/index.html.erb within layouts/application (1.5ms)
|
2268
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
2269
|
+
|
2270
|
+
|
2271
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:48:37 +0000
|
2272
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2273
|
+
|
2274
|
+
|
2275
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:48:37 +0000
|
2276
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2277
|
+
|
2278
|
+
|
2279
|
+
Started GET "/?alert=This+is+an+alert." for 127.0.0.1 at 2013-12-14 19:48:40 +0000
|
2280
|
+
Processing by FlashController#index as HTML
|
2281
|
+
Parameters: {"alert"=>"This is an alert."}
|
2282
|
+
Rendered flash/index.html.erb within layouts/application (2.2ms)
|
2283
|
+
Completed 200 OK in 6ms (Views: 4.9ms)
|
2284
|
+
|
2285
|
+
|
2286
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2013-12-14 19:48:40 +0000
|
2287
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2288
|
+
|
2289
|
+
|
2290
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-12-14 19:48:40 +0000
|
2291
|
+
Served asset /application.js - 304 Not Modified (0ms)
|