content_block 0.0.4 → 0.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e0ffa31297e143d624f284f4f9efdbba13fa5144
4
- data.tar.gz: d62d4a9349b9feb0857764e0d827cee0f132e6b0
3
+ metadata.gz: c6773b612581d83ed432ed82c86d297dbbfe2950
4
+ data.tar.gz: df494d7aa2a9574f732cf73b3754febc8860154a
5
5
  SHA512:
6
- metadata.gz: 9debbeeabf019ca386fc25b4d24d116aa3b3cea8ff771ee1835493093986c23f615fa0d6fc31caed9f12f2cc4a0439a826ea420b1bf689337f9e82d85201320a
7
- data.tar.gz: 2370fb8d48a7b6851ad32147b47b5bfef4c0f6efc2afb36db41bdc4e05fd86be33458c047f5071bc50523a10b2b01d0d1bae63b76e9ed740f61915e6c4203795
6
+ metadata.gz: 99f4936e1cdb49e72b1a5c2c909481005baa1efdc9e16b1208f491aa6ce492aee02f6a39207994e6b1457de8f78009c28ff3d4e9e621c26ef09e33a56da469c4
7
+ data.tar.gz: 184d8d6d7fa7bfd0905d119f0450585c27e62416d8258050afa84f39e8914d99d74c2d8eba22e4ec4bd3cd44484360ef0d3ee21e570bba7d421459e7db63de48
@@ -10,6 +10,5 @@
10
10
  // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
11
  // about supported directives.
12
12
  //
13
- //= require ckeditor/override
14
13
  //= require ckeditor/init
15
14
  //= require_tree .
@@ -1,10 +1,10 @@
1
- <%= simple_form_for(@rich_block, url: [content_block, @rich_block]) do |f| %>
2
- <% if @rich_block.errors.any? %>
1
+ <%= simple_form_for(rich_block, url: [content_block, rich_block]) do |f| %>
2
+ <% if rich_block.errors.any? %>
3
3
  <div id="error_explanation">
4
- <h2><%= pluralize(@rich_block.errors.count, "error") %> prohibited this rich_block from being saved:</h2>
4
+ <h2><%= pluralize(rich_block.errors.count, "error") %> prohibited this rich_block from being saved:</h2>
5
5
 
6
6
  <ul>
7
- <% @rich_block.errors.full_messages.each do |message| %>
7
+ <% rich_block.errors.full_messages.each do |message| %>
8
8
  <li><%= message %></li>
9
9
  <% end %>
10
10
  </ul>
@@ -1,5 +1,5 @@
1
1
  <h1>Editing RichBlock</h1>
2
2
 
3
- <%= render 'content_block/rich_blocks/form' %>
3
+ <%= render 'content_block/rich_blocks/form', rich_block: @rich_block %>
4
4
 
5
5
  <%= link_to 'Cancel', content_block.rich_blocks_path %>
@@ -1,5 +1,5 @@
1
1
  <h1>New RichBlock</h1>
2
2
 
3
- <%= render 'content_block/rich_blocks/form' %>
3
+ <%= render 'content_block/rich_blocks/form', rich_block: @rich_block %>
4
4
 
5
5
  <%= link_to 'Back', content_block.rich_blocks_path %>
@@ -1,3 +1,3 @@
1
1
  module ContentBlock
2
- VERSION = '0.0.4'
2
+ VERSION = '0.0.5'
3
3
  end
Binary file
@@ -1,944 +1,18 @@
1
-  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1
+  (1.3ms) CREATE TABLE "ckeditor_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "data_file_name" varchar(255) NOT NULL, "data_content_type" varchar(255), "data_file_size" integer, "assetable_id" integer, "assetable_type" varchar(30), "type" varchar(30), "width" integer, "height" integer, "created_at" datetime, "updated_at" datetime) 
2
2
   (0.1ms) select sqlite_version(*)
3
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
- Migrating to CreateContentBlockRichBlocks (20140418182642)
6
-  (0.1ms) begin transaction
7
-  (0.4ms) CREATE TABLE "content_block_rich_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "title" varchar(255), "content" varchar(255), "created_at" datetime, "updated_at" datetime)
8
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140418182642"]]
9
-  (1.0ms) commit transaction
10
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
-
12
-
13
- Started GET "/" for 127.0.0.1 at 2014-04-18 14:41:46 -0400
14
- Processing by Rails::WelcomeController#index as HTML
15
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/railties-4.1.0/lib/rails/templates/rails/welcome/index.html.erb (2.4ms)
16
- Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
17
-
18
-
19
- Started GET "/content_block" for 127.0.0.1 at 2014-04-18 14:42:03 -0400
20
-
21
- ActionController::RoutingError (No route matches [GET] "/content_block"):
22
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
23
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
24
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
25
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
26
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
27
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
28
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
29
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
30
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
31
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
32
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
33
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
34
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
35
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
36
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
37
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
38
- railties (4.1.0) lib/rails/application.rb:144:in `call'
39
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
40
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
41
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
42
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
43
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
44
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
45
-
46
-
47
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
48
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
49
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
50
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.8ms)
51
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (41.6ms)
52
-
53
-
54
- Started GET "/content_block/rich_blocks" for 127.0.0.1 at 2014-04-18 14:42:23 -0400
55
- Processing by ContentBlock::RichBlocksController#index as HTML
56
- ContentBlock::RichBlock Load (1.6ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks"
57
- Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/index.html.erb within layouts/content_block/application (5.4ms)
58
- Completed 200 OK in 55ms (Views: 33.4ms | ActiveRecord: 1.6ms)
59
-
60
-
61
- Started GET "/assets/content_block/application.css?body=1" for 127.0.0.1 at 2014-04-18 14:42:23 -0400
62
-
63
-
64
- Started GET "/assets/content_block/application.js?body=1" for 127.0.0.1 at 2014-04-18 14:42:23 -0400
65
-
66
-
67
- Started GET "/content_block" for 127.0.0.1 at 2014-04-18 14:43:53 -0400
68
-
69
- ActionController::RoutingError (No route matches [GET] "/content_block"):
70
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
71
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
72
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
73
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
74
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
75
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
76
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
77
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
78
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
79
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
80
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
81
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
82
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
83
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
84
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
85
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
86
- railties (4.1.0) lib/rails/application.rb:144:in `call'
87
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
88
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
89
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
90
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
91
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
92
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
93
-
94
-
95
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
96
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
97
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
98
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.9ms)
99
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (32.4ms)
100
-
101
-
102
- Started GET "/content_block" for 127.0.0.1 at 2014-04-18 14:48:47 -0400
103
-
104
- ActionController::RoutingError (No route matches [GET] "/content_block"):
105
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
106
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
107
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
108
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
109
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
110
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
111
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
112
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
113
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
114
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
115
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
116
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
117
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
118
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
119
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
120
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
121
- railties (4.1.0) lib/rails/application.rb:144:in `call'
122
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
123
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
124
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
125
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
126
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
127
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
128
-
129
-
130
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
131
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
132
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
133
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.2ms)
134
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (30.5ms)
135
-
136
-
137
- Started GET "/content-block" for 127.0.0.1 at 2014-04-18 14:48:53 -0400
138
-
139
- ActionController::RoutingError (No route matches [GET] "/content-block"):
140
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
141
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
142
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
143
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
144
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
145
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
146
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
147
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
148
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
149
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
150
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
151
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
152
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
153
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
154
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
155
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
156
- railties (4.1.0) lib/rails/application.rb:144:in `call'
157
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
158
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
159
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
160
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
161
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
162
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
163
-
164
-
165
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
166
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
167
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
168
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms)
169
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (24.3ms)
170
-
171
-
172
- Started GET "/rich-blocks" for 127.0.0.1 at 2014-04-18 14:49:00 -0400
173
-
174
- ActionController::RoutingError (No route matches [GET] "/rich-blocks"):
175
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
176
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
177
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
178
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
179
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
180
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
181
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
182
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
183
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
184
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
185
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
186
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
187
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
188
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
189
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
190
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
191
- railties (4.1.0) lib/rails/application.rb:144:in `call'
192
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
193
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
194
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
195
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
196
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
197
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
198
-
199
-
200
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
201
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
202
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
203
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
204
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (22.7ms)
205
-
206
-
207
- Started GET "/content-block/rich-blocks" for 127.0.0.1 at 2014-04-18 14:49:18 -0400
208
- Processing by ContentBlock::RichBlocksController#index as HTML
209
- ContentBlock::RichBlock Load (1.3ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks"
210
- Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/index.html.erb within layouts/content_block/application (5.1ms)
211
- Completed 200 OK in 56ms (Views: 25.5ms | ActiveRecord: 1.3ms)
212
-
213
-
214
- Started GET "/content-block/rich-blocks/new" for 127.0.0.1 at 2014-04-18 14:49:22 -0400
215
- Processing by ContentBlock::RichBlocksController#new as HTML
216
- Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/_form.html.erb (21.6ms)
217
- Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/new.html.erb within layouts/content_block/application (24.3ms)
218
- Completed 200 OK in 30ms (Views: 29.0ms | ActiveRecord: 0.3ms)
219
-
220
-
221
- Started GET "/content-block" for 127.0.0.1 at 2014-04-18 14:51:22 -0400
222
-
223
- ActionController::RoutingError (No route matches [GET] "/content-block"):
224
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
225
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
226
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
227
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
228
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
229
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
230
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
231
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
232
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
233
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
234
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
235
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
236
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
237
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
238
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
239
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
240
- railties (4.1.0) lib/rails/application.rb:144:in `call'
241
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
242
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
243
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
244
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
245
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
246
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
247
-
248
-
249
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
250
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
251
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
252
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
253
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (20.8ms)
254
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
255
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
256
-  (2.8ms) CREATE TABLE "content_block_rich_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "title" varchar(255), "content" varchar(255), "created_at" datetime, "updated_at" datetime) 
257
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
258
-  (0.1ms) select sqlite_version(*)
259
-  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
260
-  (0.1ms) SELECT version FROM "schema_migrations"
261
-  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140418182642')
262
-  (2.6ms) CREATE TABLE "content_block_rich_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "title" varchar(255), "content" varchar(255), "created_at" datetime, "updated_at" datetime) 
263
-  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
264
-  (0.1ms) select sqlite_version(*)
265
-  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
266
-  (0.1ms) SELECT version FROM "schema_migrations"
267
-  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140418182642')
268
-
269
-
270
- Started GET "/content-block" for 127.0.0.1 at 2014-04-18 15:16:54 -0400
271
-
272
- ActionController::RoutingError (No route matches [GET] "/content-block"):
273
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
274
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
275
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
276
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
277
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
278
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
279
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
280
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
281
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
282
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
283
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
284
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
285
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
286
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
287
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
288
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
289
- railties (4.1.0) lib/rails/application.rb:144:in `call'
290
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
291
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
292
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
293
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
294
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
295
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
296
-
297
-
298
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
299
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
300
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
301
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (11.6ms)
302
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (40.2ms)
303
-
304
-
305
- Started GET "/rich-blocks" for 127.0.0.1 at 2014-04-18 15:17:05 -0400
306
-
307
- ActionController::RoutingError (No route matches [GET] "/rich-blocks"):
308
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
309
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
310
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
311
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
312
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
313
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
314
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
315
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
316
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
317
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
318
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
319
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
320
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
321
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
322
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
323
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
324
- railties (4.1.0) lib/rails/application.rb:144:in `call'
325
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
326
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
327
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
328
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
329
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
330
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
331
-
332
-
333
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
334
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
335
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
336
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
337
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.7ms)
338
-
339
-
340
- Started GET "/content-block/rich-blocks" for 127.0.0.1 at 2014-04-18 15:17:11 -0400
341
- Processing by ContentBlock::RichBlocksController#index as HTML
342
- ContentBlock::RichBlock Load (2.3ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks"
343
- Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/index.html.erb within layouts/content_block/application (7.1ms)
344
- Completed 200 OK in 71ms (Views: 37.4ms | ActiveRecord: 2.3ms)
345
-
346
-
347
- Started GET "/assets/content_block/application.css?body=1" for 127.0.0.1 at 2014-04-18 15:17:11 -0400
348
-
349
-
350
- Started GET "/assets/content_block/application.js?body=1" for 127.0.0.1 at 2014-04-18 15:17:11 -0400
351
-
352
-
353
- Started GET "/content-block/rich-blocks" for 127.0.0.1 at 2014-04-18 15:22:16 -0400
354
-
355
- ArgumentError (Invalid route name: 'rich-blocks'):
356
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:425:in `add_route'
357
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1464:in `add_route'
358
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1441:in `decomposed_match'
359
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1422:in `block in match'
360
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1412:in `each'
361
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1412:in `match'
362
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:613:in `map_method'
363
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:574:in `get'
364
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1279:in `block (2 levels) in resources'
365
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1312:in `block (2 levels) in collection'
366
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:740:in `scope'
367
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1311:in `block in collection'
368
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1565:in `with_scope_level'
369
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1310:in `collection'
370
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1278:in `block in resources'
371
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1575:in `block (2 levels) in resource_scope'
372
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:740:in `scope'
373
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1575:in `block in resource_scope'
374
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1565:in `with_scope_level'
375
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1574:in `resource_scope'
376
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:1273:in `resources'
377
- /Users/jchevalier/Documents/Code/CommonMedia/content_block/config/routes.rb:2:in `block in <top (required)>'
378
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:526:in `instance_exec'
379
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:526:in `block in with_default_scope'
380
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:740:in `scope'
381
- actionpack (4.1.0) lib/action_dispatch/routing/mapper.rb:525:in `with_default_scope'
382
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:333:in `eval_block'
383
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:313:in `draw'
384
- /Users/jchevalier/Documents/Code/CommonMedia/content_block/config/routes.rb:1:in `<top (required)>'
385
- activesupport (4.1.0) lib/active_support/dependencies.rb:241:in `load'
386
- activesupport (4.1.0) lib/active_support/dependencies.rb:241:in `block in load'
387
- activesupport (4.1.0) lib/active_support/dependencies.rb:232:in `load_dependency'
388
- activesupport (4.1.0) lib/active_support/dependencies.rb:241:in `load'
389
- railties (4.1.0) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
390
- railties (4.1.0) lib/rails/application/routes_reloader.rb:40:in `each'
391
- railties (4.1.0) lib/rails/application/routes_reloader.rb:40:in `load_paths'
392
- railties (4.1.0) lib/rails/application/routes_reloader.rb:16:in `reload!'
393
- railties (4.1.0) lib/rails/application/routes_reloader.rb:26:in `block in updater'
394
- activesupport (4.1.0) lib/active_support/file_update_checker.rb:75:in `call'
395
- activesupport (4.1.0) lib/active_support/file_update_checker.rb:75:in `execute'
396
- railties (4.1.0) lib/rails/application/routes_reloader.rb:7:in `execute'
397
- railties (4.1.0) lib/rails/application/finisher.rb:83:in `block (2 levels) in <module:Finisher>'
398
- activesupport (4.1.0) lib/active_support/callbacks.rb:438:in `instance_exec'
399
- activesupport (4.1.0) lib/active_support/callbacks.rb:438:in `block in make_lambda'
400
- activesupport (4.1.0) lib/active_support/callbacks.rb:184:in `call'
401
- activesupport (4.1.0) lib/active_support/callbacks.rb:184:in `block in simple'
402
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `call'
403
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `block in simple'
404
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `call'
405
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `block in simple'
406
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
407
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
408
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!'
409
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:71:in `call'
410
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
411
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
412
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
413
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
414
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
415
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
416
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
417
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
418
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
419
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
420
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
421
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
422
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
423
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
424
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
425
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
426
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
427
- railties (4.1.0) lib/rails/application.rb:144:in `call'
428
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
429
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
430
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
431
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
432
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
433
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
434
-
435
-
436
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
437
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
438
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
439
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.4ms)
440
-
441
-
442
- Started GET "/content-block" for 127.0.0.1 at 2014-04-18 15:22:20 -0400
443
-
444
- ActionController::RoutingError (No route matches [GET] "/content-block"):
445
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
446
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
447
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
448
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
449
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
450
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
451
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
452
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
453
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
454
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
455
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
456
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
457
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
458
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
459
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
460
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
461
- railties (4.1.0) lib/rails/application.rb:144:in `call'
462
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
463
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
464
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
465
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
466
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
467
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
468
-
469
-
470
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
471
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
472
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
473
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
474
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (19.6ms)
475
-
476
-
477
- Started GET "/content-block" for 127.0.0.1 at 2014-04-18 15:22:32 -0400
478
-
479
- ActionController::RoutingError (No route matches [GET] "/content-block"):
480
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
481
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
482
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
483
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
484
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
485
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
486
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
487
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
488
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
489
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
490
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
491
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
492
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
493
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
494
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
495
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
496
- railties (4.1.0) lib/rails/application.rb:144:in `call'
497
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
498
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
499
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
500
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
501
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
502
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
503
-
504
-
505
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
506
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
507
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
508
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
509
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (20.0ms)
510
-
511
-
512
- Started GET "/content-block" for 127.0.0.1 at 2014-04-18 15:22:48 -0400
513
-
514
- ActionController::RoutingError (No route matches [GET] "/content-block"):
515
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
516
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
517
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
518
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
519
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
520
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
521
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
522
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
523
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
524
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
525
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
526
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
527
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
528
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
529
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
530
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
531
- railties (4.1.0) lib/rails/application.rb:144:in `call'
532
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
533
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
534
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
535
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
536
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
537
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
538
-
539
-
540
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
541
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
542
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
543
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
544
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (19.8ms)
545
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
546
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
547
-
548
-
549
- Started GET "/content-block" for 127.0.0.1 at 2014-04-18 15:42:08 -0400
550
-
551
- ActionController::RoutingError (No route matches [GET] "/content-block"):
552
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
553
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
554
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
555
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
556
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
557
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
558
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
559
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
560
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
561
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
562
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
563
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
564
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
565
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
566
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
567
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
568
- railties (4.1.0) lib/rails/application.rb:144:in `call'
569
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
570
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
571
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
572
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
573
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
574
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
575
-
576
-
577
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
578
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
579
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
580
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
581
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (23.1ms)
582
-
583
-
584
- Started GET "/content-block/rich-blocks" for 127.0.0.1 at 2014-04-18 16:40:59 -0400
585
- Processing by ContentBlock::RichBlocksController#index as HTML
586
- ContentBlock::RichBlock Load (1.3ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks"
587
- Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/index.html.erb within layouts/content_block/application (5.5ms)
588
- Completed 200 OK in 53ms (Views: 33.1ms | ActiveRecord: 1.3ms)
589
-
590
-
591
- Started GET "/assets/content_block/application.css?body=1" for 127.0.0.1 at 2014-04-18 16:40:59 -0400
592
-
593
-
594
- Started GET "/assets/content_block/application.js?body=1" for 127.0.0.1 at 2014-04-18 16:40:59 -0400
595
-
596
-
597
- Started GET "/rich-blocks" for 127.0.0.1 at 2014-04-18 16:50:44 -0400
598
-
599
- ActionController::RoutingError (No route matches [GET] "/rich-blocks"):
600
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
601
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
602
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
603
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
604
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
605
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
606
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
607
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
608
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
609
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
610
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
611
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
612
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
613
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
614
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
615
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
616
- railties (4.1.0) lib/rails/application.rb:144:in `call'
617
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
618
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
619
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
620
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
621
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
622
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
623
-
624
-
625
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
626
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
627
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
628
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.9ms)
629
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (39.3ms)
630
-
631
-
632
- Started GET "/content-block/rich-blocks" for 127.0.0.1 at 2014-04-18 16:57:20 -0400
633
- Processing by ContentBlock::RichBlocksController#index as HTML
634
- ContentBlock::RichBlock Load (1.7ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks"
635
- Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/index.html.erb within layouts/content_block/application (5.7ms)
636
- Completed 200 OK in 51ms (Views: 27.1ms | ActiveRecord: 1.7ms)
637
-
638
-
639
- Started GET "/assets/content_block/application.css?body=1" for 127.0.0.1 at 2014-04-18 16:57:20 -0400
640
-
641
-
642
- Started GET "/assets/content_block/application.js?body=1" for 127.0.0.1 at 2014-04-18 16:57:20 -0400
643
-
644
-
645
- Started GET "/" for 127.0.0.1 at 2014-04-21 14:21:27 -0400
646
- Processing by Rails::WelcomeController#index as HTML
647
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/railties-4.1.0/lib/rails/templates/rails/welcome/index.html.erb (2.1ms)
648
- Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms)
649
-
650
-
651
- Started GET "/" for 127.0.0.1 at 2014-04-21 14:21:32 -0400
652
- Processing by Rails::WelcomeController#index as HTML
653
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/railties-4.1.0/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
654
- Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
655
-
656
-
657
- Started GET "/content-block/rich-blocks" for 127.0.0.1 at 2014-04-21 14:21:36 -0400
658
- Processing by ContentBlock::RichBlocksController#index as HTML
659
- ContentBlock::RichBlock Load (2.2ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks"
660
- Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/index.html.erb within layouts/content_block/application (7.8ms)
661
- Completed 200 OK in 51ms (Views: 29.9ms | ActiveRecord: 2.2ms)
662
-
663
-
664
- Started GET "/assets/content_block/application.css?body=1" for 127.0.0.1 at 2014-04-21 14:21:36 -0400
665
-
666
-
667
- Started GET "/assets/content_block/application.js?body=1" for 127.0.0.1 at 2014-04-21 14:21:36 -0400
668
-
669
-
670
- Started GET "/content-block/" for 127.0.0.1 at 2014-04-21 14:21:36 -0400
671
-
672
- ActionController::RoutingError (No route matches [GET] "/content-block"):
673
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
674
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
675
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
676
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
677
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
678
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
679
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
680
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
681
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
682
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
683
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
684
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
685
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
686
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
687
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
688
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
689
- railties (4.1.0) lib/rails/application.rb:144:in `call'
690
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
691
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
692
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
693
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
694
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
695
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
696
-
697
-
698
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
699
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
700
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
701
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (13.3ms)
702
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (42.4ms)
703
-
704
-
705
- Started GET "/rich-blocks" for 127.0.0.1 at 2014-04-21 14:21:42 -0400
706
-
707
- ActionController::RoutingError (No route matches [GET] "/rich-blocks"):
708
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
709
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
710
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
711
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
712
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
713
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
714
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
715
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
716
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
717
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
718
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
719
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
720
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
721
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
722
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
723
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
724
- railties (4.1.0) lib/rails/application.rb:144:in `call'
725
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
726
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
727
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
728
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
729
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
730
- /Users/jchevalier/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
731
-
732
-
733
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
734
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms)
735
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
736
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
737
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (24.6ms)
738
-
739
-
740
- Started GET "/content-block/rich-blocks" for 127.0.0.1 at 2014-04-21 14:21:53 -0400
741
- Processing by ContentBlock::RichBlocksController#index as HTML
742
- ContentBlock::RichBlock Load (0.2ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks"
743
- Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/index.html.erb within layouts/content_block/application (1.4ms)
744
- Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.2ms)
745
-
746
-
747
- Started GET "/assets/content_block/application.css?body=1" for 127.0.0.1 at 2014-04-21 14:21:53 -0400
748
-
749
-
750
- Started GET "/assets/content_block/application.js?body=1" for 127.0.0.1 at 2014-04-21 14:21:53 -0400
751
-
752
-
753
- Started GET "/content-block/rich-blocks/new" for 127.0.0.1 at 2014-04-21 14:25:47 -0400
754
- Processing by ContentBlock::RichBlocksController#new as HTML
755
- Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/_form.html.erb (18.3ms)
756
- Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/new.html.erb within layouts/content_block/application (20.5ms)
757
- Completed 200 OK in 26ms (Views: 24.2ms | ActiveRecord: 0.3ms)
758
-
759
-
760
- Started GET "/assets/content_block/application.css?body=1" for 127.0.0.1 at 2014-04-21 14:25:47 -0400
761
-
762
-
763
- Started GET "/assets/content_block/application.js?body=1" for 127.0.0.1 at 2014-04-21 14:25:47 -0400
764
-
765
-
766
- Started POST "/content-block/rich-blocks" for 127.0.0.1 at 2014-04-21 14:25:54 -0400
767
- Processing by ContentBlock::RichBlocksController#create as HTML
768
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"9nR+QCrMSzSZFUSkps9giLSIh6mLT489dmesom4FEOA=", "rich_block"=>{"name"=>"name", "title"=>"title", "content"=>"content"}, "commit"=>"Create Rich block"}
769
-  (0.1ms) begin transaction
770
- SQL (0.9ms) INSERT INTO "content_block_rich_blocks" ("content", "created_at", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["content", "content"], ["created_at", "2014-04-21 18:25:54.566632"], ["name", "name"], ["title", "title"], ["updated_at", "2014-04-21 18:25:54.566632"]]
771
-  (0.6ms) commit transaction
772
- Redirected to http://127.0.0.1:3000/content-block/rich-blocks/1
773
- Completed 302 Found in 12ms (ActiveRecord: 1.5ms)
774
-
775
-
776
- Started GET "/content-block/rich-blocks/1" for 127.0.0.1 at 2014-04-21 14:25:54 -0400
777
- Processing by ContentBlock::RichBlocksController#show as HTML
778
- Parameters: {"id"=>"1"}
779
- ContentBlock::RichBlock Load (0.3ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" WHERE "content_block_rich_blocks"."id" = ? LIMIT 1 [["id", 1]]
780
- Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/show.html.erb within layouts/content_block/application (3.4ms)
781
- Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.3ms)
782
-
783
-
784
- Started GET "/assets/content_block/application.js?body=1" for 127.0.0.1 at 2014-04-21 14:25:54 -0400
785
-
786
-
787
- Started GET "/assets/content_block/application.css?body=1" for 127.0.0.1 at 2014-04-21 14:25:54 -0400
788
-
789
-
790
- Started GET "/content-block/rich-blocks/1/edit" for 127.0.0.1 at 2014-04-21 14:26:12 -0400
791
- Processing by ContentBlock::RichBlocksController#edit as HTML
792
- Parameters: {"id"=>"1"}
793
- ContentBlock::RichBlock Load (0.1ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" WHERE "content_block_rich_blocks"."id" = ? LIMIT 1 [["id", 1]]
794
- Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/_form.html.erb (7.9ms)
795
- Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/edit.html.erb within layouts/content_block/application (10.6ms)
796
- Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.1ms)
797
-
798
-
799
- Started GET "/assets/content_block/application.css?body=1" for 127.0.0.1 at 2014-04-21 14:26:12 -0400
800
-
801
-
802
- Started GET "/assets/content_block/application.js?body=1" for 127.0.0.1 at 2014-04-21 14:26:12 -0400
803
-
804
-
805
- Started PATCH "/content-block/rich-blocks/1" for 127.0.0.1 at 2014-04-21 14:26:18 -0400
806
- Processing by ContentBlock::RichBlocksController#update as HTML
807
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"9nR+QCrMSzSZFUSkps9giLSIh6mLT489dmesom4FEOA=", "rich_block"=>{"name"=>"names", "title"=>"titles", "content"=>"contents"}, "commit"=>"Update Rich block", "id"=>"1"}
808
- ContentBlock::RichBlock Load (0.2ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" WHERE "content_block_rich_blocks"."id" = ? LIMIT 1 [["id", 1]]
809
-  (0.1ms) begin transaction
810
- SQL (0.4ms) UPDATE "content_block_rich_blocks" SET "content" = ?, "name" = ?, "title" = ?, "updated_at" = ? WHERE "content_block_rich_blocks"."id" = 1 [["content", "contents"], ["name", "names"], ["title", "titles"], ["updated_at", "2014-04-21 18:26:18.650755"]]
811
-  (0.8ms) commit transaction
812
- Redirected to http://127.0.0.1:3000/content-block/rich-blocks/1
813
- Completed 302 Found in 6ms (ActiveRecord: 1.5ms)
814
-
815
-
816
- Started GET "/content-block/rich-blocks/1" for 127.0.0.1 at 2014-04-21 14:26:18 -0400
817
- Processing by ContentBlock::RichBlocksController#show as HTML
818
- Parameters: {"id"=>"1"}
819
- ContentBlock::RichBlock Load (0.1ms) SELECT "content_block_rich_blocks".* FROM "content_block_rich_blocks" WHERE "content_block_rich_blocks"."id" = ? LIMIT 1 [["id", 1]]
820
- Rendered /Users/jchevalier/Documents/Code/CommonMedia/content_block/app/views/content_block/rich_blocks/show.html.erb within layouts/content_block/application (0.9ms)
821
- Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.1ms)
822
-
823
-
824
- Started GET "/assets/content_block/application.css?body=1" for 127.0.0.1 at 2014-04-21 14:26:18 -0400
825
-
826
-
827
- Started GET "/assets/content_block/application.js?body=1" for 127.0.0.1 at 2014-04-21 14:26:18 -0400
828
-
829
-
830
- Started GET "/" for 127.0.0.1 at 2014-04-21 14:26:41 -0400
831
- Processing by Rails::WelcomeController#index as HTML
832
- Rendered /Users/jchevalier/.rvm/gems/ruby-2.1.1@content_block/gems/railties-4.1.0/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
833
- Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
834
- ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
835
- Migrating to CreateCkeditorAssets (20140423122643)
836
-  (0.2ms) begin transaction
837
-  (0.7ms) CREATE TABLE "ckeditor_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "data_file_name" varchar(255) NOT NULL, "data_content_type" varchar(255), "data_file_size" integer, "assetable_id" integer, "assetable_type" varchar(30), "type" varchar(30), "width" integer, "height" integer, "created_at" datetime, "updated_at" datetime) 
838
-  (0.1ms) select sqlite_version(*)
839
-  (0.2ms) CREATE INDEX "idx_ckeditor_assetable_type" ON "ckeditor_assets" ("assetable_type", "type", "assetable_id")
3
+  (0.9ms) CREATE INDEX "idx_ckeditor_assetable" ON "ckeditor_assets" ("assetable_type", "assetable_id")
840
4
   (0.2ms) SELECT sql
841
- FROM sqlite_master
842
- WHERE name='idx_ckeditor_assetable_type' AND type='index'
843
- UNION ALL
844
- SELECT sql
845
- FROM sqlite_temp_master
846
- WHERE name='idx_ckeditor_assetable_type' AND type='index'
847
-
848
-  (0.2ms) CREATE INDEX "idx_ckeditor_assetable" ON "ckeditor_assets" ("assetable_type", "assetable_id")
849
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140423122643"]]
850
-  (1.5ms) commit transaction
851
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
852
-  (0.2ms)  SELECT sql
853
5
  FROM sqlite_master
854
6
  WHERE name='idx_ckeditor_assetable' AND type='index'
855
7
  UNION ALL
856
8
  SELECT sql
857
9
  FROM sqlite_temp_master
858
10
  WHERE name='idx_ckeditor_assetable' AND type='index'
859
- 
860
-  (0.1ms) SELECT sql
861
- FROM sqlite_master
862
- WHERE name='idx_ckeditor_assetable_type' AND type='index'
863
- UNION ALL
864
- SELECT sql
865
- FROM sqlite_temp_master
866
- WHERE name='idx_ckeditor_assetable_type' AND type='index'
867
-
868
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
869
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
870
-  (0.2ms)  SELECT sql
871
- FROM sqlite_master
872
- WHERE name='idx_ckeditor_assetable' AND type='index'
873
- UNION ALL
874
- SELECT sql
875
- FROM sqlite_temp_master
876
- WHERE name='idx_ckeditor_assetable' AND type='index'
877
- 
878
-  (0.1ms) SELECT sql
879
- FROM sqlite_master
880
- WHERE name='idx_ckeditor_assetable_type' AND type='index'
881
- UNION ALL
882
- SELECT sql
883
- FROM sqlite_temp_master
884
- WHERE name='idx_ckeditor_assetable_type' AND type='index'
885
-
886
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
887
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
888
- Migrating to CreateCkeditorAssets (20140423122643)
889
-  (0.1ms) begin transaction
890
-  (1.5ms) DROP TABLE "ckeditor_assets"
891
- SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20140423122643'
892
-  (0.8ms) commit transaction
893
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
894
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
895
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
896
- Migrating to CreateContentBlockRichBlocks (20140418182642)
897
-  (0.1ms) begin transaction
898
-  (0.9ms) DROP TABLE "content_block_rich_blocks"
899
- SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20140418182642'
900
-  (0.7ms) commit transaction
901
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
902
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
903
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
904
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
905
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
906
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
907
- Migrating to CreateContentBlockRichBlocks (20140418182642)
908
-  (0.1ms) begin transaction
909
-  (0.7ms) CREATE TABLE "content_block_rich_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "title" varchar(255), "content" text, "created_at" datetime, "updated_at" datetime) 
910
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140418182642"]]
911
-  (0.7ms) commit transaction
912
- Migrating to CreateCkeditorAssets (20140423122643)
913
-  (0.1ms) begin transaction
914
-  (0.5ms) CREATE TABLE "ckeditor_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "data_file_name" varchar(255) NOT NULL, "data_content_type" varchar(255), "data_file_size" integer, "assetable_id" integer, "assetable_type" varchar(30), "type" varchar(30), "width" integer, "height" integer, "created_at" datetime, "updated_at" datetime) 
915
-  (0.1ms) select sqlite_version(*)
916
-  (0.2ms) CREATE INDEX "idx_ckeditor_assetable_type" ON "ckeditor_assets" ("assetable_type", "type", "assetable_id")
917
-  (0.2ms) SELECT sql
918
- FROM sqlite_master
919
- WHERE name='idx_ckeditor_assetable_type' AND type='index'
920
- UNION ALL
921
- SELECT sql
922
- FROM sqlite_temp_master
923
- WHERE name='idx_ckeditor_assetable_type' AND type='index'
924
-
925
-  (0.2ms) CREATE INDEX "idx_ckeditor_assetable" ON "ckeditor_assets" ("assetable_type", "assetable_id")
926
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140423122643"]]
927
-  (0.7ms) commit transaction
928
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
929
-  (0.2ms)  SELECT sql
930
- FROM sqlite_master
931
- WHERE name='idx_ckeditor_assetable' AND type='index'
932
- UNION ALL
933
- SELECT sql
934
- FROM sqlite_temp_master
935
- WHERE name='idx_ckeditor_assetable' AND type='index'
936
- 
937
-  (0.1ms) SELECT sql
938
- FROM sqlite_master
939
- WHERE name='idx_ckeditor_assetable_type' AND type='index'
940
- UNION ALL
941
- SELECT sql
942
- FROM sqlite_temp_master
943
- WHERE name='idx_ckeditor_assetable_type' AND type='index'
944
11
 
12
+  (0.8ms) CREATE INDEX "idx_ckeditor_assetable_type" ON "ckeditor_assets" ("assetable_type", "type", "assetable_id")
13
+  (0.7ms) CREATE TABLE "content_block_rich_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "title" varchar(255), "content" text, "created_at" datetime, "updated_at" datetime)
14
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
15
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
16
+  (0.1ms) SELECT version FROM "schema_migrations"
17
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140423122643')
18
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140418182642')